first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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() {
}
}