Interface Handler

  • All Known Implementing Classes:
    ContentBuildingHandler, DefaultHandler, PrettyPrintHandler

    public interface Handler
    Similar 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 Detail

      • onEntity

        void onEntity​(Entity entity)
      • onText

        void onText​(Text text)
      • openedTag

        void openedTag​(Tag tag)
      • closedTag

        void closedTag​(Tag tag)