Package adams.core.discovery
Interface PropertyTraversal.Observer
-
- All Known Implementing Classes:
AbstractSwapObject.SwapObserver
,DefaultPropertyDiscovery.HandlerObserver
- Enclosing class:
- PropertyTraversal
public static interface PropertyTraversal.Observer
Interface for traversal observers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
observe(PropertyPath.Path path, PropertyDescriptor desc, Object parent, Object child)
Presents the current path, descriptor and object to the observer.
-
-
-
Method Detail
-
observe
void 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
-
-