re-using org.xml.sax.DocumentHandler classes
I have a set of DocumentHandler classes for parsing objects (e.g. Books, DVDs) and an object that contains several of my parseable objects (e.g Cart)
In writing a DocumentHandler to parse my Cart object, I would like to use my BookHandler and DVDHandler.
This seems like it should be simple, but I'm not sure how to do it. Could someone please help out? I know SAX1 has been deprecated, but cannot use any other method.
Thanks in advance.

