< prev index next >

src/java.base/share/classes/jdk/internal/util/xml/impl/ParserSAX.java

Print this page

        

*** 647,657 **** /** * Reports characters and empties the parser's buffer. This method is called * only if parser is going to return control to the main loop. This means * that this method may use parser buffer to report white space without ! * copeing characters to temporary buffer. */ protected void bflash() throws SAXException { if (mBuffIdx >= 0) { // Textual data has been read mHandCont.characters(mBuff, 0, (mBuffIdx + 1)); --- 647,657 ---- /** * Reports characters and empties the parser's buffer. This method is called * only if parser is going to return control to the main loop. This means * that this method may use parser buffer to report white space without ! * copying characters to temporary buffer. */ protected void bflash() throws SAXException { if (mBuffIdx >= 0) { // Textual data has been read mHandCont.characters(mBuff, 0, (mBuffIdx + 1));
*** 661,671 **** /** * Reports white space characters and empties the parser's buffer. This * method is called only if parser is going to return control to the main * loop. This means that this method may use parser buffer to report white ! * space without copeing characters to temporary buffer. */ protected void bflash_ws() throws SAXException { if (mBuffIdx >= 0) { // BUG: With additional info from DTD and xml:space attr [#2.10] // the following call can be supported: --- 661,671 ---- /** * Reports white space characters and empties the parser's buffer. This * method is called only if parser is going to return control to the main * loop. This means that this method may use parser buffer to report white ! * space without copying characters to temporary buffer. */ protected void bflash_ws() throws SAXException { if (mBuffIdx >= 0) { // BUG: With additional info from DTD and xml:space attr [#2.10] // the following call can be supported:
< prev index next >