first commit
This commit is contained in:
43
CS2335/lab5/src/nettext/file/XMLSettings.java
Normal file
43
CS2335/lab5/src/nettext/file/XMLSettings.java
Normal 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() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user