Config ui prototype and some minor fixes

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@29 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2009-09-07 08:01:40 +00:00
parent f6c8e1709e
commit e8bba32302
50 changed files with 1091 additions and 110 deletions

View file

@ -1,5 +1,5 @@
/**
* This is Robert Harders public domain Base64 class. It is unmodified, except for the package name.
* This is Robert Harders public domain Base64 class. It is unmodified, except for the package name.
*
* <p>Encodes and decodes to and from Base64 notation.</p>
* <p>Homepage: <a href="http://iharder.net/base64">http://iharder.net/base64</a>.</p>

View file

@ -26,7 +26,7 @@
package writer2latex.util;
// Create a list of values separated by commas or another seperation character
// Create a list of values separated by commas or another seperation character
public class CSVList{
private String sSep;
private String sNameValueSep;

View file

@ -39,7 +39,7 @@ import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.NamedNodeMap;
// This class contains some usefull, but unrelated static methods
// This class contains some usefull, but unrelated static methods
public class Misc{
private final static int BUFFERSIZE = 1024;

View file

@ -27,7 +27,7 @@
package writer2latex.util;
/** This class provides a simple string input buffer; it can be used as the
* basis of a tokenizer.
* basis of a tokenizer.
*/
public class SimpleInputBuffer {