Interface IModelElementVisitor<CONTEXT,RESULT>

Type Parameters:
CONTEXT - the type of contextual data to pass to each visited node
RESULT - the type of result produced by visitation
All Known Implementing Classes:
AbstractModelElementVisitor

public interface IModelElementVisitor<CONTEXT,RESULT>
Provides a set of callbacks used when iterating over node items in a directed graph.

The AbstractModelElementVisitor provides an abstract implementation of this visitor pattern.

See Also: