Interface AResourceDeltaVisitor
-
- 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 AResourceDeltaVisitorImplementation of the visitor pattern forresource deltas.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanvisit(AResourceDelta delta)Visits the given resource delta.
-
-
-
Method Detail
-
visit
boolean visit(AResourceDelta delta)
Visits the given resource delta.- Parameters:
delta- the resource delta to visit- Returns:
- whether the visitor should continue visiting the delta's children
-
-