Package org.dom4j
Class VisitorSupport
- java.lang.Object
-
- org.dom4j.VisitorSupport
-
-
Constructor Summary
Constructors Constructor Description VisitorSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visit(Attribute node)
Visits the givenAttribute
void
visit(CDATA node)
Visits the givenCDATA
void
visit(Comment node)
Visits the givenComment
void
visit(Document document)
Visits the givenDocument
void
visit(DocumentType documentType)
Visits the givenDocumentType
void
visit(Element node)
Visits the givenElement
void
visit(Entity node)
Visits the givenEntity
void
visit(Namespace namespace)
Visits the givenNamespace
void
visit(ProcessingInstruction node)
Visits the givenProcessingInstruction
void
visit(Text node)
Visits the givenText
-
-
-
Method Detail
-
visit
public void visit(Document document)
Description copied from interface:Visitor
Visits the given
Document
-
visit
public void visit(DocumentType documentType)
Description copied from interface:Visitor
Visits the given
DocumentType
-
visit
public void visit(Element node)
Description copied from interface:Visitor
Visits the given
Element
-
visit
public void visit(Attribute node)
Description copied from interface:Visitor
Visits the given
Attribute
-
visit
public void visit(CDATA node)
Description copied from interface:Visitor
Visits the given
CDATA
-
visit
public void visit(Comment node)
Description copied from interface:Visitor
Visits the given
Comment
-
visit
public void visit(Entity node)
Description copied from interface:Visitor
Visits the given
Entity
-
visit
public void visit(Namespace namespace)
Description copied from interface:Visitor
Visits the given
Namespace
-
visit
public void visit(ProcessingInstruction node)
Description copied from interface:Visitor
Visits the given
ProcessingInstruction
-
-