package nettext.file; /** * Class XMLSettings: The XML Settings class contains some settings * for the reading and writing of the XML save files. * *
* Revision History: * v1.0 (Feb. 20, 2004) - Created the XMLSettings class ** * @author Jose Caban * @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
XMLSettings instance.
*/
public XMLSettings() {
}
}