Merge changes from 1.0 final + more config ui work
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@34 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
e8bba32302
commit
a0384669cc
46 changed files with 1671 additions and 90 deletions
|
@ -16,11 +16,11 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
*
|
||||
* Copyright: 2002-2008 by Henrik Just
|
||||
* Copyright: 2002-2009 by Henrik Just
|
||||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.0 (2008-11-23)
|
||||
* Version 1.2 (2009-09-20)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -31,6 +31,8 @@ import java.io.InputStream;
|
|||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
import java.lang.IllegalArgumentException;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/** This is an interface for configuration of a {@link Converter}.
|
||||
* A configuration always supports simple name/value options.
|
||||
|
@ -94,6 +96,28 @@ public interface Config {
|
|||
* not exist or the given name is null
|
||||
*/
|
||||
public String getOption(String sName);
|
||||
|
||||
/** Set a complex option
|
||||
*
|
||||
* @param sGroup the group to which this option belongs
|
||||
* @param sName the name of this option
|
||||
* @param attributes the attributes defining the values of this option
|
||||
*/
|
||||
public void setComplexOption(String sGroup, String sName, Map<String,String> attributes);
|
||||
|
||||
/** Get a complex option
|
||||
*
|
||||
* @param sGroup the group to which this option belongs
|
||||
* @param sName the name of this option
|
||||
* @return the attributes defining the values of this option
|
||||
*/
|
||||
public Map<String,String> getComplexOption(String sGroup, String sName);
|
||||
|
||||
/** Get the collection of complex options in a specific groups
|
||||
*
|
||||
* @param sGroup the name of the group of options
|
||||
* @return the names of the currently defined options in this group
|
||||
*/
|
||||
public Set<String> getComplexOptions(String sGroup);
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.2 (2009-08-23)
|
||||
* Version 1.2 (2009-09-17)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -33,7 +33,7 @@ public class ConverterFactory {
|
|||
|
||||
// Version information
|
||||
private static final String VERSION = "1.1.1";
|
||||
private static final String DATE = "2008-09-07";
|
||||
private static final String DATE = "2008-09-17";
|
||||
|
||||
/** Return version information
|
||||
* @return the Writer2LaTeX version in the form
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue