elena 2002/08/26 20:12:33 Modified: java/src/org/apache/xerces/dom DOMNormalizer.java Log: For extensibility, remove final methods Revision Changes Path 1.14 +7 -4 xml-xerces/java/src/org/apache/xerces/dom/DOMNormalizer.java Index: DOMNormalizer.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DOMNormalizer.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- DOMNormalizer.java 23 Aug 2002 20:14:38 -0000 1.13 +++ DOMNormalizer.java 27 Aug 2002 03:12:33 -0000 1.14 @@ -109,6 +109,9 @@ * The tree might not be validated correctly if entityReferences, CDATA sections are * 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. * * @author Elena Litani, IBM * @version $Id$ @@ -214,7 +217,7 @@ } } - protected final void setValidationHandler (RevalidationHandler validator){ + protected void setValidationHandler (RevalidationHandler validator){ this.fValidationHandler = validator; } @@ -223,7 +226,7 @@ * Normalizes document. * Note: reset() must be called before this method. */ - protected final void normalizeDocument(CoreDocumentImpl document){ + protected void normalizeDocument(CoreDocumentImpl document){ if (fSymbolTable == null) { // reset was not called return; @@ -269,7 +272,7 @@ * to normalize again starting on the node returned. * @return */ - protected final Node normalizeNode (Node node){ + protected Node normalizeNode (Node node){ // REVISIT: should we support other DOM implementations? // if so we should not depend on Xerces specific classes
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]