Package adams.core.discovery
Interface PropertyTraversal.Observer
-
- All Known Implementing Classes:
AbstractSwapObject.SwapObserver,DefaultPropertyDiscovery.HandlerObserver,FixLWL.UpdateRequired,FixLWLSynchroNoUpdate.LWLSynchroObserver,FlowContextUtils.LocatorObserver,FlowContextUtils.UpdateObserver,HelpSupporterUtils.HelpSupporterObserver,ReplaceLinearRegression.LinearRegressionObserver,ScriptedClassifierUtils.ExpandPlaceholdersObserver,ScriptedClassifierUtils.InitObserver,StoppableUtils.StoppableObserver
- Enclosing class:
- PropertyTraversal
public static interface PropertyTraversal.ObserverInterface for traversal observers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanobserve(PropertyPath.Path path, PropertyDescriptor desc, Object parent, Object child)Presents the current path, descriptor and object to the observer.
-
-
-
Method Detail
-
observe
boolean observe(PropertyPath.Path path, PropertyDescriptor desc, Object parent, Object child)
Presents the current path, descriptor and object to the observer.- Parameters:
path- the pathdesc- the property descriptorparent- the parent objectchild- the child object- Returns:
- true if to continue observing
-
-