< prev index next >

src/java.base/share/classes/jdk/internal/org/xml/sax/ContentHandler.java

Print this page

        

*** 350,360 **** * @throws org.xml.sax.SAXException any SAX exception, possibly * wrapping another exception * @see #ignorableWhitespace * @see org.xml.sax.Locator */ ! public void characters (char ch[], int start, int length) throws SAXException; /** * Receive notification of ignorable whitespace in element content. --- 350,360 ---- * @throws org.xml.sax.SAXException any SAX exception, possibly * wrapping another exception * @see #ignorableWhitespace * @see org.xml.sax.Locator */ ! public void characters (char[] ch, int start, int length) throws SAXException; /** * Receive notification of ignorable whitespace in element content.
*** 379,389 **** * @param length the number of characters to read from the array * @throws org.xml.sax.SAXException any SAX exception, possibly * wrapping another exception * @see #characters */ ! public void ignorableWhitespace (char ch[], int start, int length) throws SAXException; /** * Receive notification of a processing instruction. --- 379,389 ---- * @param length the number of characters to read from the array * @throws org.xml.sax.SAXException any SAX exception, possibly * wrapping another exception * @see #characters */ ! public void ignorableWhitespace (char[] ch, int start, int length) throws SAXException; /** * Receive notification of a processing instruction.
< prev index next >