| org.dbunit.util.search.ISearchCallback
All known Subclasses: org.dbunit.util.search.AbstractNodesFilterSearchCallback,
ISearchCallback | public interface ISearchCallback (Code) | | Callback used by the search algorithms.
This interface is responsible for providing the edges of the graph and it can
be notified of some events generated by the search.
author: Felipe Leme version: $Revision: 493 $ since: Aug 25, 2005 |
nodeAdded | void nodeAdded(Object fromNode) throws SearchException(Code) | | Notifies the callback that a node has been added to the search result.
Parameters: fromNode - node that has been added. throws: Exception - exception wrapper |
searchNode | boolean searchNode(Object node) throws SearchException(Code) | | Decides if a node should be searched or not
Parameters: node - node to be filtered true if the node should be searched throws: Exception - exception wrapper |
|
|