44 lines
986 B
Java
44 lines
986 B
Java
package nettext.file;
|
|
|
|
/**
|
|
* Class XMLSettings: The XML Settings class contains some settings
|
|
* for the reading and writing of the XML save files.
|
|
*
|
|
* <PRE>
|
|
* Revision History:
|
|
* v1.0 (Feb. 20, 2004) - Created the XMLSettings class
|
|
* </PRE>
|
|
*
|
|
* @author <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Caban</A>
|
|
* @version Version 1.0, Feb. 20, 2004
|
|
*/
|
|
public class XMLSettings {
|
|
|
|
/**
|
|
* Debug output?
|
|
*/
|
|
public static final boolean VERBOSE = false;
|
|
|
|
/**
|
|
* The name of the root element of the Docuemnt XML.
|
|
*/
|
|
public static final String DOCUMENT_KEY = "document";
|
|
|
|
/**
|
|
* The name of the root element of the Document list XML
|
|
*/
|
|
public static final String DOCUMENT_LIST = "documents";
|
|
|
|
/**
|
|
* The name of the root element of a section
|
|
*/
|
|
public static final String DOCUMENT_SECTION = "section";
|
|
|
|
/**
|
|
* Creates a new <code>XMLSettings</code> instance.
|
|
*/
|
|
public XMLSettings() {
|
|
}
|
|
}
|
|
|