Class AbstractVisitable

    • Constructor Detail

      • AbstractVisitable

        public AbstractVisitable()
    • Method Detail

      • accept

        public abstract void accept​(String elementName,
                                    int elementIndex,
                                    Visitor visitor)
        Description copied from interface: Visitable
        Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:
         if (visitor.preVisit(this)) {
             visitor.visitStart(elementName, elementIndex, this);
             if (visitor.visit(elementName, elementIndex, this)) {
                 // visit children
             }
             visitor.visitEnd(elementName, elementIndex, this);
             visitor.postVisit(this);
         }
         
        Specified by:
        accept in interface Visitable
        Parameters:
        elementName - the name of the element in the context of this visit
        elementIndex - the index of the element in a list or -1 if it is not contained within a List
        visitor - the visitor to use
      • accept

        protected void accept​(byte[] value,
                              String elementName,
                              Visitor visitor)
      • accept

        protected void accept​(Year value,
                              String elementName,
                              Visitor visitor)