|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: String interning (WAS: SAX2/Java: Towards a final form)
David Brownell wrote,
> Nope -- I want to see it _exposed_ but not mandated. It's
> actually OK if parsers do this only for their own benefit,
> but it's more useful if apps can tell when it's being done.
OK, how does that pan out? Querying for String.intern() support
via a getFeature() call? That'd work, but you need to spell it
out a bit more, because the naive way of taking advantage of
interning in a ContentHandler looks disgusting,
if(hasInterning)
{
if(name == "elem1")
//
else if(name == "elem2")
//
else
// etc
}
else
{
if(name.equals("elem1"))
//
else if(name.equals("elem2"))
//
else
// etc
}
A much nicer way of doing it would be,
if(reader.getFeature(... interning ...))
reader.setContentHandler(handlerAssumingIntern);
else
reader.setContentHandler(handlerNotAssumingIntern);
reader.parseDocument(...);
I could live with this.
Cheers,
Miles
--
Miles Sabin Cromwell Media
Internet Systems Architect 5/6 Glenthorne Mews
+44 (0)20 8817 4030 London, W6 0LJ, England
msabin@c... http://www.cromwellmedia.com/
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ or CD-ROM/ISBN 981-02-3594-1
Please note: New list subscriptions now closed in preparation for transfer to OASIS.
|
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








