Package org.faktorips.runtime
Interface IVisitorSupport
-
public interface IVisitorSupportMarks an model object as accepting visitors.- Author:
- Jan Ortmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(IModelObjectVisitor visitor)Accepts the given visitor.
-
-
-
Method Detail
-
accept
boolean accept(IModelObjectVisitor visitor)
Accepts the given visitor. This results in a call of the visitor's visit method for this object and all its children.- Parameters:
visitor- The visitor to accept.- Returns:
- The result of the visitor's visit method.
- See Also:
IModelObjectVisitor.visit(IModelObject)
-
-