Package org.bndly.common.html
Interface Handler
-
- All Known Implementing Classes:
ContentBuildingHandler,DefaultHandler,PrettyPrintHandler
public interface HandlerSimilar to SAX parsing handlers this handler will be used as a callback interface, when parsing a HTML document with the HTML parser.- Author:
- cybercon <bndly@cybercon.de>
- See Also:
Parser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclosedTag(Tag tag)voidonEntity(Entity entity)voidonSelfClosingTag(SelfClosingTag tag)voidonText(Text text)voidopenedTag(Tag tag)
-
-
-
Method Detail
-
onEntity
void onEntity(Entity entity)
-
onText
void onText(Text text)
-
onSelfClosingTag
void onSelfClosingTag(SelfClosingTag tag)
-
openedTag
void openedTag(Tag tag)
-
closedTag
void closedTag(Tag tag)
-
-