home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / xml / XMLConstants.class (.txt)
Encoding:
Java Class File  |  2006-11-29  |  990 b   |  20 lines

  1. package javax.xml;
  2.  
  3. public final class XMLConstants {
  4.    public static final String NULL_NS_URI = "";
  5.    public static final String DEFAULT_NS_PREFIX = "";
  6.    public static final String XML_NS_URI = "http://www.w3.org/XML/1998/namespace";
  7.    public static final String XML_NS_PREFIX = "xml";
  8.    public static final String XMLNS_ATTRIBUTE_NS_URI = "http://www.w3.org/2000/xmlns/";
  9.    public static final String XMLNS_ATTRIBUTE = "xmlns";
  10.    public static final String W3C_XML_SCHEMA_NS_URI = "http://www.w3.org/2001/XMLSchema";
  11.    public static final String W3C_XML_SCHEMA_INSTANCE_NS_URI = "http://www.w3.org/2001/XMLSchema-instance";
  12.    public static final String W3C_XPATH_DATATYPE_NS_URI = "http://www.w3.org/2003/11/xpath-datatypes";
  13.    public static final String XML_DTD_NS_URI = "http://www.w3.org/TR/REC-xml";
  14.    public static final String RELAXNG_NS_URI = "http://relaxng.org/ns/structure/1.0";
  15.    public static final String FEATURE_SECURE_PROCESSING = "http://javax.xml.XMLConstants/feature/secure-processing";
  16.  
  17.    private XMLConstants() {
  18.    }
  19. }
  20.