Package jodd.lagarto.dom
Interface NodeVisitor
-
- All Known Implementing Classes:
LagartoHtmlRendererNodeVisitor
public interface NodeVisitorSimilar toTagVisitor, this is a visitor for DOM tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcdata(CData cdata)voidcomment(Comment comment)voiddocument(Document document)voiddocumentType(DocumentType documentType)voidelement(Element element)voidtext(Text text)voidxmlDeclaration(XmlDeclaration xmlDeclaration)
-
-
-
Method Detail
-
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)
-
-