KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thaiopensource > xml > util > WellKnownNamespaces


1 package com.thaiopensource.xml.util;
2
3 public class WellKnownNamespaces {
4   static public final String JavaDoc XML = "http://www.w3.org/XML/1998/namespace";
5   static public final String JavaDoc XMLNS = "http://www.w3.org/2000/xmlns";
6   static public final String JavaDoc XML_SCHEMA_DATATYPES = "http://www.w3.org/2001/XMLSchema-datatypes";
7   static public final String JavaDoc XML_SCHEMA = "http://www.w3.org/2001/XMLSchema";
8   static public final String JavaDoc RELAX_NG_COMPATIBILITY_DATATYPES = "http://relaxng.org/ns/compatibility/datatypes/1.0";
9   static public final String JavaDoc RELAX_NG = "http://relaxng.org/ns/structure/1.0";
10   static public final String JavaDoc RELAX_NG_0_9 = "http://relaxng.org/ns/structure/0.9";
11   static public final String JavaDoc RELAX_NG_COMPATIBILITY_ANNOTATIONS = "http://relaxng.org/ns/compatibility/annotations/1.0";
12
13   private WellKnownNamespaces() {
14   }
15
16 }
17
Popular Tags