2003/12/13 08:13:34
[org.ibex.core.git] / src / org / xwt / util / XML.java
index 18b86ca..ca1d713 100644 (file)
@@ -762,13 +762,13 @@ public abstract class XML
      * beginning of this character segment, which can be processed in a
      * line-by-line fashion due to the above newline restriction.</p>
      */
-    public abstract void characters(char[] ch, int start, int length) throws SchemaException;
+    public abstract void characters(char[] ch, int start, int length) throws SchemaException, IOException;
 
     /** Represents a line of ignorable whitespace. */
-    public abstract void whitespace(char[] ch, int start, int length) throws SchemaException;
+    public abstract void whitespace(char[] ch, int start, int length) throws SchemaException, IOException;
 
     /** Represents the end of an Element. */
-    public abstract void endElement(Element e) throws SchemaException;
+    public abstract void endElement(Element e) throws SchemaException, IOException;
 
 
     /////////////////////////////////////////////////////////////////////////////////////////////