com.evelopers.unimod.core
Interface ModelVisitor

All Known Implementing Classes:
CompletenessCheckVisitor, ConsistencyCheckVisitor

public interface ModelVisitor

This interface is implemented by objects that visits state machine elements.


Method Summary
 boolean visit(ModelElement e)
          Called by ModelElement.accept(com.evelopers.unimod.core.ModelVisitor) method.
 

Method Detail

visit

public boolean visit(ModelElement e)
              throws VisitorException
Called by ModelElement.accept(com.evelopers.unimod.core.ModelVisitor) method.

Parameters:
e - model element to visit
Returns:
true if the model element members should be visited; false if they should be skipped
Throws:
VisitorException