All Packages Class Hierarchy This Package Previous Next Index
Interface com.trumphurst.controls.TreeProcessor
- public interface TreeProcessor
This interface is a "functor" for processing Trees.
To traverse every item in a Tree, create a TreeProcessor which
performs whatever function you want to do to each item in the tree,
then pass the TreeProcessor to the ProcessTree method of the root.
- See Also:
- Tree, ProcessTree
-
version
-
-
continueProcess(Tree)
- Called for each item in the Tree.
version
public static final RCSVersion version
continueProcess
public abstract boolean continueProcess(Tree item)
- Called for each item in the Tree.
- Parameters:
- item - The item to process.
- Returns:
- true to continue the search, false to stop the search immediately.
All Packages Class Hierarchy This Package Previous Next Index