Interface Visitable

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Visitable accept​(Visitor v)
      Accept a visitor, and call v.visit() on child nodes as necessary.
      void addTag​(java.lang.String tag)
      Add a tag to this Visitable.
      boolean taggedWith​(java.lang.String tag)
      Return true if this Visitable is tagged with the indicated tag.
    • Method Detail

      • addTag

        void addTag​(java.lang.String tag)
        Add a tag to this Visitable.
      • taggedWith

        boolean taggedWith​(java.lang.String tag)
        Return true if this Visitable is tagged with the indicated tag.