Package org.faktorips.runtime
Interface IModelObjectDeltaVisitor
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IModelObjectDeltaVisitorVisitor to visit a model object delta.- Author:
- Jan Ortmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvisit(IModelObjectDelta delta)Visits the given model object delta.
-
-
-
Method Detail
-
visit
boolean visit(IModelObjectDelta delta)
Visits the given model object delta.- Parameters:
delta- The delta to visit- Returns:
trueif the delta's children should be visited;falseif they should be skipped.
-
-