Package org.synchronoss.cpo.core
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 TypeMethodDescriptionvoidacceptMetaDFVisitor(MetaVisitor visitor) Accepts a visitor, depth-first: this node is visited, then each child accepts the visitor in turn.
-
Method Details
-
acceptMetaDFVisitor
Accepts a visitor, depth-first: this node is visited, then each child accepts the visitor in turn.- Parameters:
visitor- the visitor to accept
-