ElementHandler
interface defines a handler of Element
objects. It is used primarily in event based processing models such as for processing large XML documents as they are being parsed rather than waiting until the whole document is parsed.
The class should be subclassed by clients wishing to provide an element handler for special expressions.
@since 3.0The methods startElement, characters, and endElement
are called in sequence as they are for normal sax content handlers.
An element handler corresponds to a specific element in a schema. A handler must return a child handler for each valid child element of its corresponding element.
@see org.xml.sax.ContentHandler @author Justin Deoliveira,Refractions Research Inc.,jdeolive@refractions.net @source $URL$Each attribute handler implementation:
|
|
|
|