mrglavas 2004/10/04 14:57:31
Modified: java/src/org/apache/xerces/impl/dtd XML11DTDValidator.java
XMLDTDDescription.java XML11DTDProcessor.java
XMLDTDValidatorFilter.java XMLAttributeDecl.java
XMLDTDLoader.java XMLDTDValidator.java
XML11NSDTDValidator.java XMLElementDecl.java
XMLDTDProcessor.java XMLEntityDecl.java
XMLContentSpec.java DTDGrammar.java
XMLNotationDecl.java XMLNSDTDValidator.java
XMLSimpleType.java DTDGrammarBucket.java
Log:
Marking several classes as internal with the @xerces.internal tag.
Revision Changes Path
1.7 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11DTDValidator.java
Index: XML11DTDValidator.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11DTDValidator.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XML11DTDValidator.java 24 Feb 2004 22:48:17 -0000 1.6
+++ XML11DTDValidator.java 4 Oct 2004 21:57:30 -0000 1.7
@@ -22,6 +22,8 @@
/**
* This allows the validator to correctlyhandle XML 1.1
* documents.
+ *
+ * @xerces.internal
*
* @author Neil Graham
* @version $Id$
1.9 +10 -8
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDDescription.java
Index: XMLDTDDescription.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDDescription.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XMLDTDDescription.java 24 Feb 2004 22:48:17 -0000 1.8
+++ XMLDTDDescription.java 4 Oct 2004 21:57:30 -0000 1.9
@@ -23,13 +23,14 @@
import org.apache.xerces.util.XMLResourceIdentifierImpl;
import java.util.Vector;
-/*
- * All information specific to dTD grammars.
+/**
+ * All information specific to DTD grammars.
+ *
+ * @xerces.internal
*
* @author Neil Graham, IBM
* @version $Id$
*/
-
public class XMLDTDDescription extends XMLResourceIdentifierImpl
implements org.apache.xerces.xni.grammars.XMLDTDDescription {
@@ -71,19 +72,20 @@
return XMLGrammarDescription.XML_DTD;
} // getGrammarType(): String
- // return the root name of this DTD
- // returns null if root name is unknown
+ /**
+ * @return the root name of this DTD or null if root name is unknown
+ */
public String getRootName() {
return fRootName;
} // getRootName(): String
- // set the root name
+ /** Set the root name **/
public void setRootName(String rootName) {
fRootName = rootName;
fPossibleRoots = null;
}
- // set possible roots
+ /** Set possible roots **/
public void setPossibleRoots(Vector possibleRoots) {
fPossibleRoots = possibleRoots;
}
1.4 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11DTDProcessor.java
Index: XML11DTDProcessor.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11DTDProcessor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XML11DTDProcessor.java 24 Feb 2004 22:48:17 -0000 1.3
+++ XML11DTDProcessor.java 4 Oct 2004 21:57:30 -0000 1.4
@@ -29,6 +29,8 @@
* as a DTD loader, so that XML 1.1 external subsets can
* be processed correctly (hence it's rather anomalous-appearing
* derivation from XMLDTDLoader).
+ *
+ * @xerces.internal
*
* @author Neil Graham, IBM
*
1.4 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidatorFilter.java
Index: XMLDTDValidatorFilter.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidatorFilter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XMLDTDValidatorFilter.java 24 Feb 2004 22:48:17 -0000 1.3
+++ XMLDTDValidatorFilter.java 4 Oct 2004 21:57:30 -0000 1.4
@@ -22,6 +22,8 @@
* Defines a DTD Validator filter to allow
* components to query the DTD validator.
*
+ * @xerces.internal
+ *
* @author Elena Litani, IBM
*
* @version $Id$
1.5 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLAttributeDecl.java
Index: XMLAttributeDecl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLAttributeDecl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XMLAttributeDecl.java 24 Feb 2004 22:48:17 -0000 1.4
+++ XMLAttributeDecl.java 4 Oct 2004 21:57:30 -0000 1.5
@@ -19,6 +19,8 @@
import org.apache.xerces.xni.QName;
/**
+ * @xerces.internal
+ *
* @version $Id$
*/
public class XMLAttributeDecl {
1.11 +3 -1 xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDLoader.java
Index: XMLDTDLoader.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDLoader.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- XMLDTDLoader.java 24 Feb 2004 22:48:17 -0000 1.10
+++ XMLDTDLoader.java 4 Oct 2004 21:57:30 -0000 1.11
@@ -54,6 +54,8 @@
* <li>http://apache.org/xml/properties/internal/grammar-pool</li>
* <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
* </ul>
+ *
+ * @xerces.internal
*
* @author Neil Graham, IBM
*
1.61 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidator.java
Index: XMLDTDValidator.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidator.java,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- XMLDTDValidator.java 3 Jun 2004 19:41:50 -0000 1.60
+++ XMLDTDValidator.java 4 Oct 2004 21:57:30 -0000 1.61
@@ -70,6 +70,8 @@
* <li>http://apache.org/xml/properties/internal/grammar-pool</li>
* <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
* </ul>
+ *
+ * @xerces.internal
*
* @author Eric Ye, IBM
* @author Andy Clark, IBM
1.4 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11NSDTDValidator.java
Index: XML11NSDTDValidator.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XML11NSDTDValidator.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XML11NSDTDValidator.java 24 Feb 2004 22:48:17 -0000 1.3
+++ XML11NSDTDValidator.java 4 Oct 2004 21:57:30 -0000 1.4
@@ -48,6 +48,8 @@
* <li>http://apache.org/xml/properties/internal/grammar-pool</li>
* <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
* </ul>
+ *
+ * @xerces.internal
*
* @author Elena Litani, IBM
* @author Michael Glavassevich, IBM
1.5 +4 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLElementDecl.java
Index: XMLElementDecl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLElementDecl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XMLElementDecl.java 24 Feb 2004 22:48:17 -0000 1.4
+++ XMLElementDecl.java 4 Oct 2004 21:57:30 -0000 1.5
@@ -18,7 +18,10 @@
import org.apache.xerces.xni.QName;
import org.apache.xerces.impl.dtd.models.ContentModelValidator;
+
/**
+ * @xerces.internal
+ *
* @version $Id$
*/
public class XMLElementDecl {
1.13 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDProcessor.java
Index: XMLDTDProcessor.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDProcessor.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- XMLDTDProcessor.java 24 Feb 2004 22:48:17 -0000 1.12
+++ XMLDTDProcessor.java 4 Oct 2004 21:57:30 -0000 1.13
@@ -62,6 +62,8 @@
* <li>http://apache.org/xml/properties/internal/grammar-pool</li>
* <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
* </ul>
+ *
+ * @xerces.internal
*
* @author Neil Graham, IBM
*
1.5 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLEntityDecl.java
Index: XMLEntityDecl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLEntityDecl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XMLEntityDecl.java 24 Feb 2004 22:48:17 -0000 1.4
+++ XMLEntityDecl.java 4 Oct 2004 21:57:30 -0000 1.5
@@ -17,6 +17,8 @@
package org.apache.xerces.impl.dtd;
/**
+ * @xerces.internal
+ *
* @version $Id$
*/
public class XMLEntityDecl {
1.5 +5 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLContentSpec.java
Index: XMLContentSpec.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLContentSpec.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XMLContentSpec.java 24 Feb 2004 22:48:17 -0000 1.4
+++ XMLContentSpec.java 4 Oct 2004 21:57:30 -0000 1.5
@@ -65,6 +65,8 @@
* one" and "one or more" nodes. The leaf nodes would always have a valid
* string pool index, as the "#PCDATA" leaf is not used in the declarations
* for element content models.
+ *
+ * @xerces.internal
*
* @version $Id$
*/
@@ -263,6 +265,8 @@
* "mean". If those values refer to content spec identifiers,
* then the user can call back into the provider to get the
* next content spec node in the structure.
+ *
+ * @xerces.internal
*/
public interface Provider {
1.30 +7 -1 xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammar.java
Index: DTDGrammar.java
===================================================================
RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammar.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- DTDGrammar.java 18 Jun 2004 16:11:30 -0000 1.29
+++ DTDGrammar.java 4 Oct 2004 21:57:30 -0000 1.30
@@ -48,6 +48,8 @@
* A DTD grammar. This class implements the XNI handler interfaces
* for DTD information so that it can build the approprate validation
* structures automatically from the callbacks.
+ *
+ * @xerces.internal
*
* @author Eric Ye, IBM
* @author Jeffrey Rodriguez, IBM
@@ -2570,6 +2572,8 @@
/**
* Children list for <code>contentSpecTree</code> method.
+ *
+ * @xerces.internal
*
* @author Eric Ye, IBM
*/
@@ -2607,6 +2611,8 @@
/**
* A simple Hashtable implementation that takes a tuple (String, String)
* as the key and a int as value.
+ *
+ * @xerces.internal
*
* @author Eric Ye, IBM
* @author Andy Clark, IBM
1.6 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLNotationDecl.java
Index: XMLNotationDecl.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLNotationDecl.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- XMLNotationDecl.java 24 Feb 2004 22:48:17 -0000 1.5
+++ XMLNotationDecl.java 4 Oct 2004 21:57:30 -0000 1.6
@@ -17,6 +17,8 @@
package org.apache.xerces.impl.dtd;
/**
+ * @xerces.internal
+ *
* @version $Id$
*/
public class XMLNotationDecl {
1.9 +3 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLNSDTDValidator.java
Index: XMLNSDTDValidator.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLNSDTDValidator.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XMLNSDTDValidator.java 24 Feb 2004 22:48:17 -0000 1.8
+++ XMLNSDTDValidator.java 4 Oct 2004 21:57:30 -0000 1.9
@@ -49,6 +49,8 @@
* <li>http://apache.org/xml/properties/internal/grammar-pool</li>
* <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
* </ul>
+ *
+ * @xerces.internal
*
* @author Elena Litani, IBM
*
1.7 +5 -1
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLSimpleType.java
Index: XMLSimpleType.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLSimpleType.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XMLSimpleType.java 24 Feb 2004 22:48:17 -0000 1.6
+++ XMLSimpleType.java 4 Oct 2004 21:57:30 -0000 1.7
@@ -15,8 +15,12 @@
*/
package org.apache.xerces.impl.dtd;
+
import org.apache.xerces.impl.dv.DatatypeValidator;
+
/**
+ * @xerces.internal
+ *
* @version $Id$
*/
public class XMLSimpleType {
1.7 +10 -8
xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammarBucket.java
Index: DTDGrammarBucket.java
===================================================================
RCS file:
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammarBucket.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DTDGrammarBucket.java 24 Feb 2004 22:48:17 -0000 1.6
+++ DTDGrammarBucket.java 4 Oct 2004 21:57:30 -0000 1.7
@@ -20,13 +20,15 @@
import java.util.Hashtable;
/**
-* This very simple class is the skeleton of what the DTDValidator could use
-* to store various grammars that it gets from the GrammarPool. As in the
-* case of XSGrammarBucket, one thinks of this object as being closely
-* associated with its validator; when fully mature, this class will be
-* filled from the GrammarPool when the DTDValidator is invoked on a
-* document, and, if a new DTD grammar is parsed, the new set will be
-* offered back to the GrammarPool for possible inclusion.
+ * This very simple class is the skeleton of what the DTDValidator could use
+ * to store various grammars that it gets from the GrammarPool. As in the
+ * case of XSGrammarBucket, one thinks of this object as being closely
+ * associated with its validator; when fully mature, this class will be
+ * filled from the GrammarPool when the DTDValidator is invoked on a
+ * document, and, if a new DTD grammar is parsed, the new set will be
+ * offered back to the GrammarPool for possible inclusion.
+ *
+ * @xerces.internal
*
* @author Neil Graham, IBM
*
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]