Interface NodeVisitor

All Known Implementing Classes:
LagartoHtmlRendererNodeVisitor

public interface NodeVisitor
Similar to TagVisitor, this is a visitor for DOM tree.
  • Method Details

    • cdata

      void cdata(CData cdata)
    • comment

      void comment(Comment comment)
    • document

      void document(Document document)
    • documentType

      void documentType(DocumentType documentType)
    • element

      void element(Element element)
    • text

      void text(Text text)
    • xmlDeclaration

      void xmlDeclaration(XmlDeclaration xmlDeclaration)