Package org.apache.wicket.util.visit
Interface IVisit<R>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dontGoDeeper()
Prevents the visitor from visiting any children of the object currently visitedvoid
stop()
Stops the visit/traversalvoid
stop(R result)
Stops the visit/traversal and returnsresult
-
-
-
Method Detail
-
stop
void stop()
Stops the visit/traversal
-
dontGoDeeper
void dontGoDeeper()
Prevents the visitor from visiting any children of the object currently visited
-
-