Package com.aquima.interactions.dtree.ds
Interface ITreeNodeVisitor
-
- All Known Implementing Classes:
TreeNodeVisitor
public interface ITreeNodeVisitor
This interface is used during initialization to add nodes to a decision tree.- Since:
- 5.0
- Author:
- F. van der Meer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(IDecisionTreeNodeDS condition)
This method should be invoked to add a single node.
-
-
-
Method Detail
-
accept
void accept(IDecisionTreeNodeDS condition) throws InitializationException
This method should be invoked to add a single node.- Parameters:
condition
- Data-source providing the information of the node that should be added.- Throws:
InitializationException
- This exception is thrown when the node could not be initialized.
-
-