This marks appropriate classes in xerces.dom package with internal/experimental tags.
Ankit Pasricha
XML Parser Development
IBM Toronto Lab
8200 Warden Avenue, Ontario L6G 1C7
Phone: (905) 413 4941
Index: AttrImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/AttrImpl.java,v retrieving revision 1.59 diff -u -r1.59 AttrImpl.java --- AttrImpl.java 27 Sep 2004 15:42:01 -0000 1.59 +++ AttrImpl.java 5 Oct 2004 14:55:19 -0000 @@ -99,10 +99,12 @@ * ParentNode, be careful to keep these two classes in sync! * * @see AttrNSImpl + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM - * @author Andy Clark, IBM + * @author Andy Clark, IBM * @version $Id: AttrImpl.java,v 1.59 2004/09/27 15:42:01 nddelima Exp $ * @since PR-DOM-Level-1-19980818. * Index: AttrNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/AttrNSImpl.java,v retrieving revision 1.45 diff -u -r1.45 AttrNSImpl.java --- AttrNSImpl.java 27 Sep 2004 15:42:01 -0000 1.45 +++ AttrNSImpl.java 5 Oct 2004 14:55:19 -0000 @@ -27,6 +27,9 @@ * The qualified name is the node name, and we store localName which is also * used in all queries. On the other hand we recompute the prefix when * necessary. + * + * @xerces.internal + * * @author Arnaud Le Hors, IBM * @author Andy Clark, IBM * @author Ralf Pfeiffer, IBM Index: AttributeMap.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/AttributeMap.java,v retrieving revision 1.29 diff -u -r1.29 AttributeMap.java --- AttributeMap.java 24 Feb 2004 23:23:17 -0000 1.29 +++ AttributeMap.java 5 Oct 2004 14:55:19 -0000 @@ -33,6 +33,8 @@ * <p> * This class doesn't directly support mutation events, however, it notifies * the document when mutations are performed so that the document class do so. + * + * @xerces.internal * * @version $Id: AttributeMap.java,v 1.29 2004/02/24 23:23:17 mrglavas Exp $ */ Index: CDATASectionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/CDATASectionImpl.java,v retrieving revision 1.7 diff -u -r1.7 CDATASectionImpl.java --- CDATASectionImpl.java 24 Feb 2004 23:23:18 -0000 1.7 +++ CDATASectionImpl.java 5 Oct 2004 14:55:19 -0000 @@ -41,6 +41,8 @@ * <P> * CDATA does not participate in Element.normalize() processing. * + * @xerces.internal + * * @version $Id: CDATASectionImpl.java,v 1.7 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. */ Index: CharacterDataImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/CharacterDataImpl.java,v retrieving revision 1.21 diff -u -r1.21 CharacterDataImpl.java --- CharacterDataImpl.java 24 Feb 2004 23:23:17 -0000 1.21 +++ CharacterDataImpl.java 5 Oct 2004 14:55:19 -0000 @@ -31,6 +31,8 @@ * <p> * This class doesn't directly support mutation events, however, it notifies * the document when mutations are performed so that the document class do so. + * + * @xerces.internal * * @version $Id: CharacterDataImpl.java,v 1.21 2004/02/24 23:23:17 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: ChildNode.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ChildNode.java,v retrieving revision 1.9 diff -u -r1.9 ChildNode.java --- ChildNode.java 24 Feb 2004 23:23:18 -0000 1.9 +++ ChildNode.java 5 Oct 2004 14:55:19 -0000 @@ -21,6 +21,8 @@ /** * ChildNode inherits from NodeImpl and adds the capability of being a child by * having references to its previous and next siblings. + * + * @xerces.internal * * @version $Id: ChildNode.java,v 1.9 2004/02/24 23:23:18 mrglavas Exp $ */ Index: CommentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/CommentImpl.java,v retrieving revision 1.8 diff -u -r1.8 CommentImpl.java --- CommentImpl.java 24 Feb 2004 23:23:18 -0000 1.8 +++ CommentImpl.java 5 Oct 2004 14:55:19 -0000 @@ -22,6 +22,8 @@ /** * Represents an XML (or HTML) comment. + * + * @xerces.internal * * @version $Id: CommentImpl.java,v 1.8 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: CoreDOMImplementationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/CoreDOMImplementationImpl.java,v retrieving revision 1.32 diff -u -r1.32 CoreDOMImplementationImpl.java --- CoreDOMImplementationImpl.java 18 Jun 2004 21:36:16 -0000 1.32 +++ CoreDOMImplementationImpl.java 5 Oct 2004 14:55:19 -0000 @@ -41,6 +41,9 @@ * This particular class, along with CoreDocumentImpl, supports the DOM * Core and Load/Save (Experimental). Optional modules are supported by * the more complete DOMImplementation class along with DocumentImpl. + * + * @xerces.internal + * * @version $Id: CoreDOMImplementationImpl.java,v 1.32 2004/06/18 21:36:16 nddelima Exp $ * @since PR-DOM-Level-1-19980818. */ Index: CoreDocumentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/CoreDocumentImpl.java,v retrieving revision 1.79 diff -u -r1.79 CoreDocumentImpl.java --- CoreDocumentImpl.java 31 Aug 2004 21:32:30 -0000 1.79 +++ CoreDocumentImpl.java 5 Oct 2004 14:55:20 -0000 @@ -65,6 +65,8 @@ * <p> * <b>Note:</b> When any node in the document is serialized, the * entire document is serialized along with it. + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: DOMConfigurationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMConfigurationImpl.java,v retrieving revision 1.31 diff -u -r1.31 DOMConfigurationImpl.java --- DOMConfigurationImpl.java 18 Jul 2004 20:06:41 -0000 1.31 +++ DOMConfigurationImpl.java 5 Oct 2004 14:55:20 -0000 @@ -55,6 +55,8 @@ /** * Xerces implementation of DOMConfiguration that maintains a table of recognized parameters. + * + * @xerces.internal * * @author Elena Litani, IBM * @author Neeraj Bajaj, Sun Microsystems. Index: DOMErrorImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMErrorImpl.java,v retrieving revision 1.12 diff -u -r1.12 DOMErrorImpl.java --- DOMErrorImpl.java 2 Sep 2004 15:43:26 -0000 1.12 +++ DOMErrorImpl.java 5 Oct 2004 14:55:20 -0000 @@ -30,6 +30,8 @@ * * <p>See also the <a href='http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913'>Document Object Model (DOM) Level 3 Core Specification</a>. * + * @xerces.internal + * * @author Gopal Sharma, SUN Microsystems Inc. * @author Elena Litani, IBM * Index: DOMImplementationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMImplementationImpl.java,v retrieving revision 1.32 diff -u -r1.32 DOMImplementationImpl.java --- DOMImplementationImpl.java 24 Feb 2004 23:23:18 -0000 1.32 +++ DOMImplementationImpl.java 5 Oct 2004 14:55:20 -0000 @@ -32,6 +32,8 @@ * The DOM API requires that it be a real object rather than static * methods. However, there's nothing that says it can't be a singleton, * so that's how I've implemented it. + * + * @xerces.internal * * @version $Id: DOMImplementationImpl.java,v 1.32 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DOMImplementationListImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMImplementationListImpl.java,v retrieving revision 1.3 diff -u -r1.3 DOMImplementationListImpl.java --- DOMImplementationListImpl.java 23 Apr 2004 21:45:04 -0000 1.3 +++ DOMImplementationListImpl.java 5 Oct 2004 14:55:20 -0000 @@ -23,6 +23,8 @@ /** * <p>This class implements the DOM Level 3 Core interface DOMImplementationList.</p> * + * @xerces.internal + * * @author Neil Delima, IBM * @since DOM Level 3 Core */ Index: DOMImplementationSourceImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMImplementationSourceImpl.java,v retrieving revision 1.15 diff -u -r1.15 DOMImplementationSourceImpl.java --- DOMImplementationSourceImpl.java 23 Apr 2004 21:45:04 -0000 1.15 +++ DOMImplementationSourceImpl.java 5 Oct 2004 14:55:20 -0000 @@ -31,6 +31,8 @@ * * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#DOMImplementationSource'>Document Object Model (DOM) Level 3 Core Specification</a>. * + * @xerces.internal + * * @version $Id: DOMImplementationSourceImpl.java,v 1.15 2004/04/23 21:45:04 mrglavas Exp $ */ public class DOMImplementationSourceImpl Index: DOMInputImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMInputImpl.java,v retrieving revision 1.3 diff -u -r1.3 DOMInputImpl.java --- DOMInputImpl.java 24 Feb 2004 23:23:18 -0000 1.3 +++ DOMInputImpl.java 5 Oct 2004 14:55:20 -0000 @@ -46,6 +46,7 @@ * <p>See also the <a href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025'>Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification</a>. * + * @xerces.internal * * @author Gopal Sharma, SUN Microsystems Inc. * @version $Id: DOMInputImpl.java,v 1.3 2004/02/24 23:23:18 mrglavas Exp $ Index: DOMLocatorImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMLocatorImpl.java,v retrieving revision 1.10 diff -u -r1.10 DOMLocatorImpl.java --- DOMLocatorImpl.java 2 Sep 2004 15:43:26 -0000 1.10 +++ DOMLocatorImpl.java 5 Oct 2004 14:55:20 -0000 @@ -24,6 +24,8 @@ * <code>DOMLocatorImpl</code> is an implementaion that describes a location (e.g. * where an error occured). * <p>See also the <a href='http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913'>Document Object Model (DOM) Level 3 Core Specification</a>. + * + * @xerces.internal * * @author Gopal Sharma, SUN Microsystems Inc. * @version $Id: DOMLocatorImpl.java,v 1.10 2004/09/02 15:43:26 mrglavas Exp $ Index: DOMMessageFormatter.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMMessageFormatter.java,v retrieving revision 1.6 diff -u -r1.6 DOMMessageFormatter.java --- DOMMessageFormatter.java 12 Jul 2004 23:44:28 -0000 1.6 +++ DOMMessageFormatter.java 5 Oct 2004 14:55:20 -0000 @@ -23,6 +23,8 @@ /** * Used to format DOM error messages, using the system locale. + * + * @xerces.internal * * @author Sandy Gao, IBM * @version $Id: DOMMessageFormatter.java,v 1.6 2004/07/12 23:44:28 venu Exp $ Index: DOMNormalizer.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMNormalizer.java,v retrieving revision 1.57 diff -u -r1.57 DOMNormalizer.java --- DOMNormalizer.java 6 Sep 2004 22:25:27 -0000 1.57 +++ DOMNormalizer.java 5 Oct 2004 14:55:21 -0000 @@ -76,8 +76,7 @@ * present in the tree. The PSVI information is not exposed, normalized data (including element * default content is not available). * - * NOTE: the implementation is experimental and methods, functionality - * can be modified or removed in the future. + * @xerces.experimental * * @author Elena Litani, IBM * @author Neeraj Bajaj, Sun Microsystems, inc. Index: DOMOutputImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMOutputImpl.java,v retrieving revision 1.3 diff -u -r1.3 DOMOutputImpl.java --- DOMOutputImpl.java 24 Feb 2004 23:23:18 -0000 1.3 +++ DOMOutputImpl.java 5 Oct 2004 14:55:21 -0000 @@ -44,6 +44,7 @@ * never modify them (though it may make copies and modify the copies, * if necessary). * + * @xerces.internal * * @author Arun Yadav, Sun Microsytems * @author Gopal Sharma, Sun Microsystems Index: DOMStringListImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMStringListImpl.java,v retrieving revision 1.2 diff -u -r1.2 DOMStringListImpl.java --- DOMStringListImpl.java 24 Feb 2004 23:23:17 -0000 1.2 +++ DOMStringListImpl.java 5 Oct 2004 14:55:21 -0000 @@ -21,9 +21,11 @@ import org.apache.xerces.dom3.DOMStringList; /** - * DOM Level 3 Experimental + * DOM Level 3 * - * This class implemets the DOM Levl 3 Core interface DOMStringList. + * This class implemets the DOM Level 3 Core interface DOMStringList. + * + * @xerces.experimental * * @author nddelima */ Index: DOMXSImplementationSourceImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DOMXSImplementationSourceImpl.java,v retrieving revision 1.3 diff -u -r1.3 DOMXSImplementationSourceImpl.java --- DOMXSImplementationSourceImpl.java 23 Apr 2004 21:45:04 -0000 1.3 +++ DOMXSImplementationSourceImpl.java 5 Oct 2004 14:55:21 -0000 @@ -25,6 +25,9 @@ * Allows to retrieve <code>XSImplementation</code>, DOM Level 3 Core and LS implementations * and PSVI implementation. * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#DOMImplementationSource'>Document Object Model (DOM) Level 3 Core Specification</a>. + * + * @xerces.internal + * * @author Elena Litani, IBM * @version $Id: DOMXSImplementationSourceImpl.java,v 1.3 2004/04/23 21:45:04 mrglavas Exp $ */ Index: DeepNodeListImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeepNodeListImpl.java,v retrieving revision 1.8 diff -u -r1.8 DeepNodeListImpl.java --- DeepNodeListImpl.java 24 Feb 2004 23:23:17 -0000 1.8 +++ DeepNodeListImpl.java 5 Oct 2004 14:55:21 -0000 @@ -64,6 +64,8 @@ * <P> * NOTE: Level 2 of the DOM will probably _not_ use NodeList for its * extended search mechanisms, partly for the reasons just discussed. + * + * @xerces.internal * * @version $Id: DeepNodeListImpl.java,v 1.8 2004/02/24 23:23:17 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredAttrImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredAttrImpl.java,v retrieving revision 1.20 diff -u -r1.20 DeferredAttrImpl.java --- DeferredAttrImpl.java 24 Feb 2004 23:23:18 -0000 1.20 +++ DeferredAttrImpl.java 5 Oct 2004 14:55:21 -0000 @@ -54,6 +54,7 @@ * Namespaces. DeferredAttrNSImpl, which inherits from AttrNSImpl, does. * @see DeferredAttrNSImpl * + * @xerces.internal * * @author Andy Clark, IBM * @author Arnaud Le Hors, IBM Index: DeferredAttrNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredAttrNSImpl.java,v retrieving revision 1.24 diff -u -r1.24 DeferredAttrNSImpl.java --- DeferredAttrNSImpl.java 24 Feb 2004 23:23:18 -0000 1.24 +++ DeferredAttrNSImpl.java 5 Oct 2004 14:55:21 -0000 @@ -26,6 +26,9 @@ /** * DeferredAttrNSImpl is to AttrNSImpl, what DeferredAttrImpl is to * AttrImpl. + * + * @xerces.internal + * * @author Andy Clark, IBM * @author Arnaud Le Hors, IBM * @version $Id: DeferredAttrNSImpl.java,v 1.24 2004/02/24 23:23:18 mrglavas Exp $ Index: DeferredCDATASectionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredCDATASectionImpl.java,v retrieving revision 1.11 diff -u -r1.11 DeferredCDATASectionImpl.java --- DeferredCDATASectionImpl.java 24 Feb 2004 23:23:18 -0000 1.11 +++ DeferredCDATASectionImpl.java 5 Oct 2004 14:55:21 -0000 @@ -37,6 +37,8 @@ * split that string over two successive CDATAs at that time. * <P> * CDATA does not participate in Element.normalize() processing. + * + * @xerces.internal * * @version $Id: DeferredCDATASectionImpl.java,v 1.11 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredCommentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredCommentImpl.java,v retrieving revision 1.10 diff -u -r1.10 DeferredCommentImpl.java --- DeferredCommentImpl.java 24 Feb 2004 23:23:18 -0000 1.10 +++ DeferredCommentImpl.java 5 Oct 2004 14:55:21 -0000 @@ -18,6 +18,8 @@ /** * Represents an XML (or HTML) comment. + * + * @xerces.internal * * @version $Id: DeferredCommentImpl.java,v 1.10 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredDOMImplementationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredDOMImplementationImpl.java,v retrieving revision 1.2 diff -u -r1.2 DeferredDOMImplementationImpl.java --- DeferredDOMImplementationImpl.java 18 Jun 2004 21:49:15 -0000 1.2 +++ DeferredDOMImplementationImpl.java 5 Oct 2004 14:55:21 -0000 @@ -24,6 +24,8 @@ * * <p>This implementation simply extends DOMImplementationImpl to differentiate * between the Deferred DOM Implementations and Non-Deferred DOM Implementations.</p> + * + * @xerces.internal * * @author Neil Delima, IBM * Index: DeferredDocumentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredDocumentImpl.java,v retrieving revision 1.55 diff -u -r1.55 DeferredDocumentImpl.java --- DeferredDocumentImpl.java 15 Jun 2004 22:13:16 -0000 1.55 +++ DeferredDocumentImpl.java 5 Oct 2004 14:55:22 -0000 @@ -33,6 +33,8 @@ * objects. The Node objects created have a ownerDocument attribute * which associates them with the Document within whose context they * were created. + * + * @xerces.internal * * @version $Id: DeferredDocumentImpl.java,v 1.55 2004/06/15 22:13:16 nddelima Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredDocumentTypeImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredDocumentTypeImpl.java,v retrieving revision 1.17 diff -u -r1.17 DeferredDocumentTypeImpl.java --- DeferredDocumentTypeImpl.java 24 Feb 2004 23:23:18 -0000 1.17 +++ DeferredDocumentTypeImpl.java 5 Oct 2004 14:55:22 -0000 @@ -34,6 +34,8 @@ * Most notably, absolutely no provision was made for storing * and using Element and Attribute information. Nor was the linkage * between Entities and Entity References nailed down solidly. + * + * @xerces.internal * * @version $Id: DeferredDocumentTypeImpl.java,v 1.17 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredElementDefinitionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredElementDefinitionImpl.java,v retrieving revision 1.13 diff -u -r1.13 DeferredElementDefinitionImpl.java --- DeferredElementDefinitionImpl.java 24 Feb 2004 23:23:17 -0000 1.13 +++ DeferredElementDefinitionImpl.java 5 Oct 2004 14:55:22 -0000 @@ -25,6 +25,8 @@ * I've included this in Level 1 purely as an anchor point for default * attributes. In Level 2 it should enable the ChildRule support. * + * @xerces.internal + * * @version $Id: DeferredElementDefinitionImpl.java,v 1.13 2004/02/24 23:23:17 mrglavas Exp $ */ public class DeferredElementDefinitionImpl Index: DeferredElementImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredElementImpl.java,v retrieving revision 1.17 diff -u -r1.17 DeferredElementImpl.java --- DeferredElementImpl.java 24 Feb 2004 23:23:18 -0000 1.17 +++ DeferredElementImpl.java 5 Oct 2004 14:55:22 -0000 @@ -41,6 +41,8 @@ * Namespaces. DeferredElementNSImpl, which inherits from ElementNSImpl, does. * @see DeferredElementNSImpl * + * @xerces.internal + * * @version $Id: DeferredElementImpl.java,v 1.17 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. */ Index: DeferredElementNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredElementNSImpl.java,v retrieving revision 1.18 diff -u -r1.18 DeferredElementNSImpl.java --- DeferredElementNSImpl.java 24 Feb 2004 23:23:18 -0000 1.18 +++ DeferredElementNSImpl.java 5 Oct 2004 14:55:22 -0000 @@ -32,6 +32,8 @@ * DeferredElementNSImpl is to ElementNSImpl, what DeferredElementImpl is to * ElementImpl. * @see DeferredElementImpl + * + * @xerces.internal */ public class DeferredElementNSImpl extends ElementNSImpl Index: DeferredEntityImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredEntityImpl.java,v retrieving revision 1.18 diff -u -r1.18 DeferredEntityImpl.java --- DeferredEntityImpl.java 24 Feb 2004 23:23:18 -0000 1.18 +++ DeferredEntityImpl.java 5 Oct 2004 14:55:22 -0000 @@ -47,6 +47,7 @@ * _any_ answer will involve a non-DOM operation, and this is the * simplest solution. * + * @xerces.internal * * @version $Id: DeferredEntityImpl.java,v 1.18 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredEntityReferenceImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredEntityReferenceImpl.java,v retrieving revision 1.20 diff -u -r1.20 DeferredEntityReferenceImpl.java --- DeferredEntityReferenceImpl.java 24 Feb 2004 23:23:17 -0000 1.20 +++ DeferredEntityReferenceImpl.java 5 Oct 2004 14:55:22 -0000 @@ -64,6 +64,8 @@ * structure-change-monitoring code I implemented to support * DeepNodeList. * + * @xerces.internal + * * @version $Id: DeferredEntityReferenceImpl.java,v 1.20 2004/02/24 23:23:17 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. */ Index: DeferredNotationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredNotationImpl.java,v retrieving revision 1.11 diff -u -r1.11 DeferredNotationImpl.java --- DeferredNotationImpl.java 24 Feb 2004 23:23:18 -0000 1.11 +++ DeferredNotationImpl.java 5 Oct 2004 14:55:22 -0000 @@ -33,6 +33,8 @@ * See the XML 1.0 spec, sections 4.7 and 2.6, for more info. * <P> * Level 1 of the DOM does not support editing Notation contents. + * + * @xerces.internal * * @version $Id: DeferredNotationImpl.java,v 1.11 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredProcessingInstructionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredProcessingInstructionImpl.java,v retrieving revision 1.13 diff -u -r1.13 DeferredProcessingInstructionImpl.java --- DeferredProcessingInstructionImpl.java 24 Feb 2004 23:23:17 -0000 1.13 +++ DeferredProcessingInstructionImpl.java 5 Oct 2004 14:55:22 -0000 @@ -20,6 +20,8 @@ * Processing Instructions (PIs) permit documents to carry * processor-specific information alongside their actual content. PIs * are most common in XML, but they are supported in HTML as well. + * + * @xerces.internal * * @version $Id: DeferredProcessingInstructionImpl.java,v 1.13 2004/02/24 23:23:17 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DeferredTextImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DeferredTextImpl.java,v retrieving revision 1.13 diff -u -r1.13 DeferredTextImpl.java --- DeferredTextImpl.java 24 Feb 2004 23:23:17 -0000 1.13 +++ DeferredTextImpl.java 5 Oct 2004 14:55:22 -0000 @@ -28,6 +28,8 @@ * Note that CDATASection is a subclass of Text. This is conceptually * valid, since they're really just two different ways of quoting * characters when they're written out as part of an XML stream. + * + * @xerces.internal * * @version $Id: DeferredTextImpl.java,v 1.13 2004/02/24 23:23:17 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DocumentFragmentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DocumentFragmentImpl.java,v retrieving revision 1.13 diff -u -r1.13 DocumentFragmentImpl.java --- DocumentFragmentImpl.java 28 May 2004 02:43:35 -0000 1.13 +++ DocumentFragmentImpl.java 5 Oct 2004 14:55:22 -0000 @@ -56,6 +56,8 @@ * acts as the parent of these nodes so that the user can use the * standard methods from the Node interface, such as insertBefore() * and appendChild(). + * + * @xerces.internal * * @version $Id: DocumentFragmentImpl.java,v 1.13 2004/05/28 02:43:35 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: DocumentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DocumentImpl.java,v retrieving revision 1.80 diff -u -r1.80 DocumentImpl.java --- DocumentImpl.java 13 Aug 2004 21:24:25 -0000 1.80 +++ DocumentImpl.java 5 Oct 2004 14:55:23 -0000 @@ -65,6 +65,8 @@ * <p> * <b>Note:</b> When any node in the document is serialized, the * entire document is serialized along with it. + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: DocumentTypeImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/DocumentTypeImpl.java,v retrieving revision 1.27 diff -u -r1.27 DocumentTypeImpl.java --- DocumentTypeImpl.java 12 Jul 2004 06:44:25 -0000 1.27 +++ DocumentTypeImpl.java 5 Oct 2004 14:55:23 -0000 @@ -39,6 +39,8 @@ * Most notably, absolutely no provision was made for storing * and using Element and Attribute information. Nor was the linkage * between Entities and Entity References nailed down solidly. + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: ElementDefinitionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ElementDefinitionImpl.java,v retrieving revision 1.13 diff -u -r1.13 ElementDefinitionImpl.java --- ElementDefinitionImpl.java 24 Feb 2004 23:23:17 -0000 1.13 +++ ElementDefinitionImpl.java 5 Oct 2004 14:55:23 -0000 @@ -26,6 +26,8 @@ * I've included this in Level 1 purely as an anchor point for default * attributes. In Level 2 it should enable the ChildRule support. * + * @xerces.internal + * * @version $Id: ElementDefinitionImpl.java,v 1.13 2004/02/24 23:23:17 mrglavas Exp $ */ public class ElementDefinitionImpl Index: ElementImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ElementImpl.java,v retrieving revision 1.68 diff -u -r1.68 ElementImpl.java --- ElementImpl.java 27 Sep 2004 15:42:01 -0000 1.68 +++ ElementImpl.java 5 Oct 2004 14:55:23 -0000 @@ -43,6 +43,8 @@ * ElementImpl does not support Namespaces. ElementNSImpl, which inherits from * it, does. * @see ElementNSImpl + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: ElementNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ElementNSImpl.java,v retrieving revision 1.44 diff -u -r1.44 ElementNSImpl.java --- ElementNSImpl.java 27 Sep 2004 15:42:01 -0000 1.44 +++ ElementNSImpl.java 5 Oct 2004 14:55:23 -0000 @@ -33,6 +33,9 @@ * The qualified name is the node name, and we store localName which is also * used in all queries. On the other hand we recompute the prefix when * necessary. + * + * @xerces.internal + * * @author Elena litani, IBM * @author Neeraj Bajaj, Sun Microsystems * @version $Id: ElementNSImpl.java,v 1.44 2004/09/27 15:42:01 nddelima Exp $ Index: EntityImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/EntityImpl.java,v retrieving revision 1.25 diff -u -r1.25 EntityImpl.java --- EntityImpl.java 26 Aug 2004 21:28:39 -0000 1.25 +++ EntityImpl.java 5 Oct 2004 14:55:23 -0000 @@ -49,6 +49,8 @@ * _any_ answer will involve a non-DOM operation, and this is the * simplest solution. * + * @xerces.internal + * * @author Elena Litani, IBM * @version $Id: EntityImpl.java,v 1.25 2004/08/26 21:28:39 nddelima Exp $ * @since PR-DOM-Level-1-19980818. Index: EntityReferenceImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/EntityReferenceImpl.java,v retrieving revision 1.26 diff -u -r1.26 EntityReferenceImpl.java --- EntityReferenceImpl.java 1 Sep 2004 03:23:45 -0000 1.26 +++ EntityReferenceImpl.java 5 Oct 2004 14:55:24 -0000 @@ -70,6 +70,8 @@ * structure-change-monitoring code I implemented to support * DeepNodeList. * + * @xerces.internal + * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM * @author Andy Clark, IBM Index: LCount.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/LCount.java,v retrieving revision 1.7 diff -u -r1.7 LCount.java --- LCount.java 24 Feb 2004 23:23:18 -0000 1.7 +++ LCount.java 5 Oct 2004 14:55:24 -0000 @@ -39,6 +39,8 @@ resolve and might not save enough event traffic to be worth the investment. */ /** + * @xerces.internal + * * @version $Id: LCount.java,v 1.7 2004/02/24 23:23:18 mrglavas Exp $ */ Index: NamedNodeMapImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/NamedNodeMapImpl.java,v retrieving revision 1.36 diff -u -r1.36 NamedNodeMapImpl.java --- NamedNodeMapImpl.java 24 Feb 2004 23:23:18 -0000 1.36 +++ NamedNodeMapImpl.java 5 Oct 2004 14:55:24 -0000 @@ -45,6 +45,8 @@ * contents, the indices associated with nodes may change. * <P> * + * @xerces.internal + * * @version $Id: NamedNodeMapImpl.java,v 1.36 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. */ Index: NodeImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/NodeImpl.java,v retrieving revision 1.73 diff -u -r1.73 NodeImpl.java --- NodeImpl.java 26 Apr 2004 14:44:56 -0000 1.73 +++ NodeImpl.java 5 Oct 2004 14:55:24 -0000 @@ -69,6 +69,8 @@ * This class doesn't directly support mutation events, however, it still * implements the EventTarget interface and forward all related calls to the * document so that the document class do so. + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: NodeIteratorImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/NodeIteratorImpl.java,v retrieving revision 1.12 diff -u -r1.12 NodeIteratorImpl.java --- NodeIteratorImpl.java 24 Feb 2004 23:23:18 -0000 1.12 +++ NodeIteratorImpl.java 5 Oct 2004 14:55:24 -0000 @@ -31,6 +31,8 @@ * on DOM remove. It is expected that the DOM implementation call removeNode * right before the actual DOM transformation. If not called by the DOM, * the client could call it before doing the removal. + * + * @xerces.internal * * @version $Id: NodeIteratorImpl.java,v 1.12 2004/02/24 23:23:18 mrglavas Exp $ */ Index: NodeListCache.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/NodeListCache.java,v retrieving revision 1.5 diff -u -r1.5 NodeListCache.java --- NodeListCache.java 24 Feb 2004 23:23:17 -0000 1.5 +++ NodeListCache.java 5 Oct 2004 14:55:24 -0000 @@ -21,6 +21,9 @@ /** * This class is used, via a pool managed on CoreDocumentImpl, in ParentNode to * improve performance of the NodeList accessors, getLength() and item(i). + * + * @xerces.internal + * * @author Arnaud Le Hors, IBM * * @version $Id: NodeListCache.java,v 1.5 2004/02/24 23:23:17 mrglavas Exp $ Index: NotationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/NotationImpl.java,v retrieving revision 1.19 diff -u -r1.19 NotationImpl.java --- NotationImpl.java 1 Sep 2004 03:23:45 -0000 1.19 +++ NotationImpl.java 5 Oct 2004 14:55:24 -0000 @@ -38,6 +38,8 @@ * See the XML 1.0 spec, sections 4.7 and 2.6, for more info. * <P> * Level 1 of the DOM does not support editing Notation contents. + * + * @xerces.internal * * @version $Id: NotationImpl.java,v 1.19 2004/09/01 03:23:45 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: ObjectFactory.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ObjectFactory.java,v retrieving revision 1.8 diff -u -r1.8 ObjectFactory.java --- ObjectFactory.java 15 Aug 2004 21:22:15 -0000 1.8 +++ ObjectFactory.java 5 Oct 2004 14:55:25 -0000 @@ -36,6 +36,8 @@ * The code also runs both as part of an unbundled jar file and * when bundled as part of the JDK. * <p> + * + * @xerces.internal * * @version $Id: ObjectFactory.java,v 1.8 2004/08/15 21:22:15 mrglavas Exp $ */ Index: PSVIAttrNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/PSVIAttrNSImpl.java,v retrieving revision 1.8 diff -u -r1.8 PSVIAttrNSImpl.java --- PSVIAttrNSImpl.java 24 Feb 2004 23:23:18 -0000 1.8 +++ PSVIAttrNSImpl.java 5 Oct 2004 14:55:25 -0000 @@ -27,6 +27,8 @@ /** * Attribute namespace implementation; stores PSVI attribute items. * + * @xerces.internal + * * @author Sandy Gao, IBM * * @version $Id: PSVIAttrNSImpl.java,v 1.8 2004/02/24 23:23:18 mrglavas Exp $ Index: PSVIDOMImplementationImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/PSVIDOMImplementationImpl.java,v retrieving revision 1.5 diff -u -r1.5 PSVIDOMImplementationImpl.java --- PSVIDOMImplementationImpl.java 24 Feb 2004 23:23:18 -0000 1.5 +++ PSVIDOMImplementationImpl.java 5 Oct 2004 14:55:25 -0000 @@ -30,6 +30,8 @@ * The DOM API requires that it be a real object rather than static * methods. However, there's nothing that says it can't be a singleton, * so that's how I've implemented it. + * + * @xerces.internal * * @version $Id: PSVIDOMImplementationImpl.java,v 1.5 2004/02/24 23:23:18 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: PSVIDocumentImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/PSVIDocumentImpl.java,v retrieving revision 1.9 diff -u -r1.9 PSVIDocumentImpl.java --- PSVIDocumentImpl.java 15 Apr 2004 18:38:22 -0000 1.9 +++ PSVIDocumentImpl.java 5 Oct 2004 14:55:25 -0000 @@ -31,6 +31,8 @@ * Our own document implementation, which knows how to create an element * with PSVI information. * + * @xerces.internal + * * @author Sandy Gao, IBM * * @version $Id: PSVIDocumentImpl.java,v 1.9 2004/04/15 18:38:22 mrglavas Exp $ Index: PSVIElementNSImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/PSVIElementNSImpl.java,v retrieving revision 1.8 diff -u -r1.8 PSVIElementNSImpl.java --- PSVIElementNSImpl.java 24 Feb 2004 23:23:17 -0000 1.8 +++ PSVIElementNSImpl.java 5 Oct 2004 14:55:25 -0000 @@ -27,6 +27,8 @@ /** * Element namespace implementation; stores PSVI element items. * + * @xerces.internal + * * @author Sandy Gao, IBM * * @version $Id: PSVIElementNSImpl.java,v 1.8 2004/02/24 23:23:17 mrglavas Exp $ Index: ParentNode.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ParentNode.java,v retrieving revision 1.45 diff -u -r1.45 ParentNode.java --- ParentNode.java 12 Jul 2004 06:44:25 -0000 1.45 +++ ParentNode.java 5 Oct 2004 14:55:25 -0000 @@ -58,6 +58,8 @@ * * <p><b>WARNING</b>: Some of the code here is partially duplicated in * AttrImpl, be careful to keep these two classes in sync! + * + * @xerces.internal * * @author Arnaud Le Hors, IBM * @author Joe Kesselman, IBM Index: ProcessingInstructionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/ProcessingInstructionImpl.java,v retrieving revision 1.14 diff -u -r1.14 ProcessingInstructionImpl.java --- ProcessingInstructionImpl.java 26 Aug 2004 21:28:39 -0000 1.14 +++ ProcessingInstructionImpl.java 5 Oct 2004 14:55:25 -0000 @@ -25,6 +25,8 @@ * are most common in XML, but they are supported in HTML as well. * * This class inherits from CharacterDataImpl to reuse its setNodeValue method. + * + * @xerces.internal * * @version $Id: ProcessingInstructionImpl.java,v 1.14 2004/08/26 21:28:39 nddelima Exp $ * @since PR-DOM-Level-1-19980818. Index: RangeExceptionImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/RangeExceptionImpl.java,v retrieving revision 1.7 diff -u -r1.7 RangeExceptionImpl.java --- RangeExceptionImpl.java 15 Aug 2004 21:22:16 -0000 1.7 +++ RangeExceptionImpl.java 5 Oct 2004 14:55:25 -0000 @@ -18,6 +18,8 @@ import org.w3c.dom.ranges.RangeException; /** + * @xerces.internal + * * @version $Id: RangeExceptionImpl.java,v 1.7 2004/08/15 21:22:16 mrglavas Exp $ */ Index: RangeImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/RangeImpl.java,v retrieving revision 1.35 diff -u -r1.35 RangeImpl.java --- RangeImpl.java 13 Aug 2004 21:24:13 -0000 1.35 +++ RangeImpl.java 5 Oct 2004 14:55:26 -0000 @@ -29,6 +29,8 @@ /** The RangeImpl class implements the org.w3c.dom.range.Range interface. * <p> Please see the API documentation for the interface classes * and use the interfaces in your client programs. + * + * @xerces.internal * * @version $Id: RangeImpl.java,v 1.35 2004/08/13 21:24:13 nddelima Exp $ */ Index: SecuritySupport.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/SecuritySupport.java,v retrieving revision 1.3 diff -u -r1.3 SecuritySupport.java --- SecuritySupport.java 24 Feb 2004 23:23:18 -0000 1.3 +++ SecuritySupport.java 5 Oct 2004 14:55:26 -0000 @@ -24,6 +24,8 @@ * API. * * Base class with security related methods that work on JDK 1.1. + * + * @xerces.internal */ class SecuritySupport { Index: SecuritySupport12.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/SecuritySupport12.java,v retrieving revision 1.3 diff -u -r1.3 SecuritySupport12.java --- SecuritySupport12.java 24 Feb 2004 23:23:18 -0000 1.3 +++ SecuritySupport12.java 5 Oct 2004 14:55:26 -0000 @@ -25,6 +25,8 @@ * API. * * Security related methods that only work on J2SE 1.2 and newer. + * + * @xerces.internal */ class SecuritySupport12 extends SecuritySupport { Index: TextImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/TextImpl.java,v retrieving revision 1.26 diff -u -r1.26 TextImpl.java --- TextImpl.java 13 Jul 2004 03:32:22 -0000 1.26 +++ TextImpl.java 5 Oct 2004 14:55:26 -0000 @@ -33,6 +33,8 @@ * Note that CDATASection is a subclass of Text. This is conceptually * valid, since they're really just two different ways of quoting * characters when they're written out as part of an XML stream. + * + * @xerces.internal * * @version $Id: TextImpl.java,v 1.26 2004/07/13 03:32:22 mrglavas Exp $ * @since PR-DOM-Level-1-19980818. Index: TreeWalkerImpl.java =================================================================== RCS file: /home/cvspublic/xml-xerces/java/src/org/apache/xerces/dom/TreeWalkerImpl.java,v retrieving revision 1.9 diff -u -r1.9 TreeWalkerImpl.java --- TreeWalkerImpl.java 24 Feb 2004 23:23:17 -0000 1.9 +++ TreeWalkerImpl.java 5 Oct 2004 14:55:26 -0000 @@ -21,8 +21,10 @@ import org.w3c.dom.traversal.NodeFilter; import org.w3c.dom.traversal.TreeWalker; -/** This class implements the TreeWalker interface. */ -/** +/** This class implements the TreeWalker interface. + * + * @xerces.internal + * * @version $Id: TreeWalkerImpl.java,v 1.9 2004/02/24 23:23:17 mrglavas Exp $ */
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
