[
Lists Home |
Date Index |
Thread Index
]
- From: David Megginson <david@megginson.com>
- To: XMLDev list <xml-dev@ic.ac.uk>
- Date: Fri, 14 Jan 2000 11:33:35 -0500 (EST)
Instead of the old ParserFactory class, I'm considering creating a
general SAXUtils class, containing only static methods. Here's what
I've thought of so far:
public static void registerXMLReader (XMLReader reader);
public static XMLReader getXMLReader ();
public static XMLReader getXMLReader (String featuresWanted[],
String featuresNotWanted[]);
public static String makeAbsoluteURL (String url);
I wonder, though, if the register/getXMLReader stuff is even
appropriate for such a low-level URI, or whether it should be left for
higher layers.
I've also added makeAbsoluteURL because it's a method that I end up
cutting and pasting pretty much every time I write a SAX app. Is
there anything else in this category? I don't want this class to grow
too large, but we can add any really essential stuff like that.
Suggestions?
All the best,
David
--
David Megginson david@megginson.com
http://www.megginson.com/
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
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.
|