Package org.dom4j

Class VisitorSupport

  • All Implemented Interfaces:
    Visitor

    public abstract class VisitorSupport
    extends java.lang.Object
    implements Visitor
    VisitorSupport is an abstract base class which is useful for implementation inheritence or when using anonymous inner classes to create simple Visitor implementations.
    • Constructor Detail

      • VisitorSupport

        public VisitorSupport()
    • Method Detail

      • visit

        public void visit​(Document document)
        Description copied from interface: Visitor

        Visits the given Document

        Specified by:
        visit in interface Visitor
        Parameters:
        document - is the Document node to visit.
      • visit

        public void visit​(DocumentType documentType)
        Description copied from interface: Visitor

        Visits the given DocumentType

        Specified by:
        visit in interface Visitor
        Parameters:
        documentType - is the DocumentType node to visit.
      • visit

        public void visit​(Element node)
        Description copied from interface: Visitor

        Visits the given Element

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the Element node to visit.
      • visit

        public void visit​(Attribute node)
        Description copied from interface: Visitor

        Visits the given Attribute

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the Attribute node to visit.
      • visit

        public void visit​(CDATA node)
        Description copied from interface: Visitor

        Visits the given CDATA

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the CDATA node to visit.
      • visit

        public void visit​(Comment node)
        Description copied from interface: Visitor

        Visits the given Comment

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the Comment node to visit.
      • visit

        public void visit​(Entity node)
        Description copied from interface: Visitor

        Visits the given Entity

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the Entity node to visit.
      • visit

        public void visit​(Namespace namespace)
        Description copied from interface: Visitor

        Visits the given Namespace

        Specified by:
        visit in interface Visitor
        Parameters:
        namespace - is the Namespace node to visit.
      • visit

        public void visit​(ProcessingInstruction node)
        Description copied from interface: Visitor

        Visits the given ProcessingInstruction

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the ProcessingInstruction node to visit.
      • visit

        public void visit​(Text node)
        Description copied from interface: Visitor

        Visits the given Text

        Specified by:
        visit in interface Visitor
        Parameters:
        node - is the Text node to visit.