summaryrefslogtreecommitdiff
path: root/javax/xml/XMLConstants.java
diff options
context:
space:
mode:
authorWolfgang Baer <WBaer@gmx.de>2006-04-06 07:20:17 +0000
committerWolfgang Baer <WBaer@gmx.de>2006-04-06 07:20:17 +0000
commit4f34972aada73312e4fc811f4cd704c882f50467 (patch)
tree7509d3b7124e99e71f6e231c3694e067d293519b /javax/xml/XMLConstants.java
parentf906b310fd4f9db19c854f3a292bb92cc71ded30 (diff)
downloadclasspath-4f34972aada73312e4fc811f4cd704c882f50467.tar.gz
2006-04-06 Wolfgang Baer <WBaer@gmx.de>
* javax/xml/validation/SchemaFactory.java: Corrected since tag. (getErrorHandler): Made method abstract. (setErrorHanlder): Likewise. * gnu/xml/validation/relaxng/RELAXNGSchemaFactory.java (getErrorHandler): Implement abstract method from superclass. (setErrorHandler): Likewise. (errorHandler): New field. * gnu/xml/validation/xmlschema/XMLSchemaSchemaFactory.java: (getErrorHandler): Implement abstract method from superclass. (setErrorHandler): Likewise. (errorHandler): New field. * javax/xml/XMLConstants.java: Corrected since tag. (XMLConstants): Added private constructor. * javax/xml/datatype/Duration.java: Corrected since tag. (multiply): Made method abstract. * javax/xml/datatype/DatatypeConstants.java: Corrected since tag. (DatatypeConstants): Added private constructor. * javax/xml/xpath/XPathConstants.java: Corrected since tag. (XPathConstants): Added private constructor.
Diffstat (limited to 'javax/xml/XMLConstants.java')
-rw-r--r--javax/xml/XMLConstants.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/javax/xml/XMLConstants.java b/javax/xml/XMLConstants.java
index 735620755..0d4a65ff9 100644
--- a/javax/xml/XMLConstants.java
+++ b/javax/xml/XMLConstants.java
@@ -1,5 +1,5 @@
/* XMLConstants.java --
- Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -41,10 +41,15 @@ package javax.xml;
* Repository for well-known XML constants.
*
* @author (a href='mailto:dog@gnu.org'>Chris Burdess</a)
- * @since 1.3
+ * @since 1.5
*/
public final class XMLConstants
{
+
+ private XMLConstants()
+ {
+ // to prevent instantiation
+ }
/**
* Dummy namespace URI indicating that there is no namespace.