
org.sapia.util.xml.parser.XMLDictionnaryIF Maven / Gradle / Ivy
The newest version!
package org.sapia.util.xml.parser;
/**
* This interface defines a bunch of constant values used in manipulation
* of XML documents. This dictionnary interface represents all the different
* values defined by the XML speficication like the namespace uri, the default
* xml namespace prefix, the reserved attributes like xml:lang
,
* xml:space
and xml:base
and their values.
*
* @author Jean-Cedric Desrochers
*
* - Copyright:
- Copyright © 2002-2003 Sapia Open Source Software. All Rights Reserved.
* - License:
- Read the license.txt file of the jar or visit the
* license page at the Sapia OSS web site
*
*/
public interface XMLDictionnaryIF {
/** Defines the namspace URI of XML 1.0 */
public static final String XML_NAMESPACE_URI = "http://www.w3.org/XML/1998/namespace";
/** Defines the reserved namespace prefix for the XML specification. */
public static final String XML_NAMESPACE_PREFIX = "xml:";
/** Defines the lang element name. */
public static final String LOCAL_ELEMENT_XML_LANG = "lang";
/** Defines the xml:lang element name. */
public static final String QUALIFIED_ELEMENT_XML_LANG = "xml:lang";
/** Defines the space element name. */
public static final String LOCAL_ELEMENT_XML_SPACE = "space";
/** Defines the xml:space element name. */
public static final String QUALIFIED_ELEMENT_XML_SPACE = "xml:space";
/** Defines the base element name. */
public static final String LOCAL_ELEMENT_XML_BASE = "xml:base";
/** Defines the xml:base element name. */
public static final String QUALIFIED_ELEMENT_XML_BASE = "xml:base";
/** Defines the restricted value default for the xml:space element. */
public static final String VALUE_DEFAULT = "default";
/** Defines the restricted value preserved for the xml:space element. */
public static final String VALUE_PRESERVED = "preserved";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy