|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IParserHandler
Handles events sent from the Parser
class.
Method Summary | |
---|---|
void |
comment(java.lang.String comment)
Called when the comment is reached in input document. |
void |
endDocument()
Called when the whole input document is read. |
void |
endElement(ElementEnd element,
ElementStart elementStart)
Called when an end element is reached in the input document. |
void |
characters(java.lang.String content)
Called when the text content of an element is read. |
void |
startElement(ElementStart element)
Called when a start element is reached in the input document. |
Method Detail |
---|
void startElement(ElementStart element)
element
- start element reachedvoid endElement(ElementEnd element, ElementStart elementStart)
element
- end element reachedelementStart
- corresponding start elementvoid characters(java.lang.String content)
content
- ie. "foo" for the "<b>foo</b>"void comment(java.lang.String comment)
comment
- ie. "foo" for the "<!-->foo</-->"void endDocument()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |