Interface MetaDFVisitable

All Known Implementing Classes:
CpoClass, CpoClassCaseInsensitive, CpoClassCaseSensitive

public interface MetaDFVisitable
Defines that a implementer of this interface allows visits from a MetaVisitor. The visitor should traverse depth first.
Since:
4/17/12
Author:
Michael Bellomo
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Accepts a visitor, depth-first: this node is visited, then each child accepts the visitor in turn.
  • Method Details

    • acceptMetaDFVisitor

      void acceptMetaDFVisitor(MetaVisitor visitor)
      Accepts a visitor, depth-first: this node is visited, then each child accepts the visitor in turn.
      Parameters:
      visitor - the visitor to accept