Class XMLSAXHandler

  • All Implemented Interfaces:
    ContentHandler, DTDHandler, EntityResolver, ErrorHandler

    public class XMLSAXHandler
    extends DefaultHandler
    This is a schema content handler. Code here has been modified from code written by Ian Schneider.

    This class contains one stack used to store part of the parse tree. The ElementHandlers found on the stack have direct next handlers placed on the stack. So here's the warning, be careful to read how you may be affecting (or forgetting to affect) the stack.

    If a FlowHandler implementation is available in the hints, the handler will periodically check it to see if it should stop parsing. See the FlowHandler interface.

    This is an XML Schema driven parser and resolveEntity(String, String) will ignore all dtd references. If an EntityResolver is provided it will be used.

    Author:
    dzwiers, Refractions Research, Inc. http://www.refractions.net
    See Also:
    XMLElementHandler