org.pfsw.odem
Interface ITypesVisitor

All Known Subinterfaces:
IExplorableElementVisitor

public interface ITypesVisitor

This interface defines one part of the "Visitor Pattern". It specifies a callback method that gets invoked while iterating through objects that contain IType objects. Iteration immedately stops whenever visitType(IType) returns false.


Method Summary
 boolean visitType(IType type)
          Will be called for each IType object.
 

Method Detail

visitType

boolean visitType(IType type)
Will be called for each IType object.

Parameters:
type - The type that gets visited
Returns:
true if processing should be continued, otherwise false