| Classes implementing this interface serve has handlers for elements in an
instance document as it is parsed. The element handler interface is a subset of the
org.xml.sax.ContentHandler interface.
The 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 Also: org.xml.sax.ContentHandler author: Justin Deoliveira,Refractions Research Inc.,jdeolive@refractions.net |