Package com.aquima.interactions.dtree.ds
Interface IDecisionTreeVisitor
-
- All Known Implementing Classes:
DecisionTreeVisitor
,DecisionTreeVisitor
,ReportingDecisionTreeVisitor
public interface IDecisionTreeVisitor
This data source interface is used during initialization to add a single decision tree to the engine.- Since:
- 5.0
- Author:
- F. van der Meer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDecisionTree(IDecisionTreeDS tree)
This method should be invoked to add a single decision tree to the tree engine.
-
-
-
Method Detail
-
addDecisionTree
void addDecisionTree(IDecisionTreeDS tree) throws InitializationException
This method should be invoked to add a single decision tree to the tree engine.- Parameters:
tree
- Data-source that can provide the information of a single decision tree.- Throws:
InitializationException
- This exception is thrown when the decision tree could not be initialized.
-
-