net.sourceforge.streamdom
Interface IgnoredElementHandler
- public interface IgnoredElementHandler
Attach an object that implements this interface to a
DOMStream or JDOMStream using addIgnoredElementHandler.
Note that the interface methods do not provide you
an Element -- all that you get is the name of the element
that was ignored.
Method Summary |
void |
handleElementEnd(java.lang.String qName)
the name of the element that has ended. |
void |
handleElementStart(java.lang.String qName,
org.xml.sax.Attributes atts)
The name of the element that has started and its attributes. |
handleElementStart
public void handleElementStart(java.lang.String qName,
org.xml.sax.Attributes atts)
- The name of the element that has started and its attributes.
handleElementEnd
public void handleElementEnd(java.lang.String qName)
- the name of the element that has ended.