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

Variable Index

 o version

Method Index

 o continueProcess(Tree)
Called for each item in the Tree.

Variables

 o version
 public static final RCSVersion version

Methods

 o 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