Package org.dbunit.util.search
Class AbstractIncludeNodesSearchCallback
java.lang.Object
org.dbunit.util.search.AbstractNodesFilterSearchCallback
org.dbunit.util.search.AbstractIncludeNodesSearchCallback
- All Implemented Interfaces:
ISearchCallback
Search callback that restricts traversal to a fixed set of allowed nodes.
- Since:
- Aug 25, 2005
- Version:
- $Revision$
- Author:
- Felipe Leme (dbunit@felipeal.net)
-
Field Summary
Fields inherited from class org.dbunit.util.search.AbstractNodesFilterSearchCallback
ALLOW_MODE, DENY_MODE, logger, NO_MODE -
Constructor Summary
ConstructorsConstructorDescriptionAbstractIncludeNodesSearchCallback(Object[] allowedNodes) Creates a callback that restricts traversal to the given allowed nodes.AbstractIncludeNodesSearchCallback(Set allowedNodes) Creates a callback that restricts traversal to the given allowed nodes. -
Method Summary
Methods inherited from class org.dbunit.util.search.AbstractNodesFilterSearchCallback
getFilteredNodes, getFilteringMode, nodeAdded, searchNode, setAllowedNodes, setAllowedNodes, setDeniedNodes, setDeniedNodesMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.dbunit.util.search.ISearchCallback
getEdges
-
Constructor Details
-
AbstractIncludeNodesSearchCallback
Creates a callback that restricts traversal to the given allowed nodes.- Parameters:
allowedNodes- the nodes to allow during traversal.
-
AbstractIncludeNodesSearchCallback
Creates a callback that restricts traversal to the given allowed nodes.- Parameters:
allowedNodes- the nodes to allow during traversal.
-