neeraj 2003/07/21 05:13:21 Modified: java/src/org/apache/xerces/impl/xs/opti DefaultText.java Log: Fixing dom-jar3 target. Revision Changes Path 1.2 +13 -1 xml-xerces/java/src/org/apache/xerces/impl/xs/opti/DefaultText.java Index: DefaultText.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/opti/DefaultText.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DefaultText.java 3 Jul 2003 15:15:58 -0000 1.1 +++ DefaultText.java 21 Jul 2003 12:13:21 -0000 1.2 @@ -259,4 +259,16 @@ throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported"); } + /** DOM Level 3 */ + public boolean isWhitespaceInElementContent(){ + throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported"); + } + + public String getWholeText(){ + throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported"); + } + + public Text replaceWholeText(String content) throws DOMException { + throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported"); + } }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]