< prev index next >

src/javax/xml/XMLConstants.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml;
  27 
  28 /**
  29  * <p>Utility class to contain basic XML values as constants.</p>
  30  *
  31  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  32  * @version $Revision: 1.8 $, $Date: 2010/05/25 16:19:45 $
  33  * @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a>
  34  * @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>
  35  * @see <a href="http://www.w3.org/XML/xml-V10-2e-errata">XML 1.0 Second Edition Specification Errata</a>
  36  * @see <a href="http://www.w3.org/TR/xml-names11/">Namespaces in XML 1.1</a>
  37  * @see <a href="http://www.w3.org/TR/REC-xml-names">Namespaces in XML</a>
  38  * @see <a href="http://www.w3.org/XML/xml-names-19990114-errata">Namespaces in XML Errata</a>
  39  * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
  40  * @since 1.5
  41  **/
  42 
  43 public final class XMLConstants {
  44 
  45     /**
  46      * <p>Private constructor to prevent instantiation.</p>
  47      */
  48         private XMLConstants() {
  49         }
  50 
  51     /**
  52      * <p>Namespace URI to use to represent that there is no Namespace.</p>




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml;
  27 
  28 /**
  29  * <p>Utility class to contain basic XML values as constants.</p>
  30  *
  31  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>

  32  * @see <a href="http://www.w3.org/TR/xml11/">Extensible Markup Language (XML) 1.1</a>
  33  * @see <a href="http://www.w3.org/TR/REC-xml">Extensible Markup Language (XML) 1.0 (Second Edition)</a>
  34  * @see <a href="http://www.w3.org/XML/xml-V10-2e-errata">XML 1.0 Second Edition Specification Errata</a>
  35  * @see <a href="http://www.w3.org/TR/xml-names11/">Namespaces in XML 1.1</a>
  36  * @see <a href="http://www.w3.org/TR/REC-xml-names">Namespaces in XML</a>
  37  * @see <a href="http://www.w3.org/XML/xml-names-19990114-errata">Namespaces in XML Errata</a>
  38  * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
  39  * @since 1.5
  40  **/
  41 
  42 public final class XMLConstants {
  43 
  44     /**
  45      * <p>Private constructor to prevent instantiation.</p>
  46      */
  47         private XMLConstants() {
  48         }
  49 
  50     /**
  51      * <p>Namespace URI to use to represent that there is no Namespace.</p>


< prev index next >