|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] SAX2: about LexicalHandler interface comment() method.
The comment() method reports the Comments as a char[] not a String. It is similar
to the characters() or ignoreWhitespace().
Some of the SAX2 parsers report content of single element by multiple characters().
ex) <elem>ABC
DEF</elem>
==> characters( "ABC\n", ?, 4);
characters( "DEF", ?, 3);
I think it is good for parsing performance. When use same technique for reporting
comments, following problem is expected.
After comment() was called twice, the application will not be able to discriminate
ex2 from ex1.
ex1) <!--ABC
DEF-->
==> comment( "ABC\n", ?, 4);
comment( "DEF", ?, 3);
ex2) <!--ABC
-->
<!--DEF-->
==> comment( "ABC\n", ?, 4);
comment( "DEF", ?, 3);
I want to discriminate those, but since the SAX aims to be _simple_, sush
things is not siginificant?
-----
KAZUMI Saito FUJITSU Laboratories Ltd.
***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@x...&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








