Package com.aquima.interactions.dtree.ds
Interface ITreeEngineDS
-
- All Superinterfaces:
IReportingDS
- All Known Implementing Classes:
ReportingTreeEngineDS
,TreeEngineDS
,XmlTreeEngineDS
public interface ITreeEngineDS extends IReportingDS
This data source interface is used during initialization to retrieve all the decision trees.- Since:
- 5.0
- Author:
- F. van der Meer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
iterateDecisionTrees(IDecisionTreeVisitor visitor)
This method should iterate over all the decision trees and add a data-source for each of them to the visitor.-
Methods inherited from interface com.aquima.interactions.foundation.report.IReportingDS
addMessage
-
-
-
-
Field Detail
-
CATEGORY
static final Category CATEGORY
Category used in error and/or warnings found during initialization.
-
-
Method Detail
-
iterateDecisionTrees
void iterateDecisionTrees(IDecisionTreeVisitor visitor) throws InitializationException
This method should iterate over all the decision trees and add a data-source for each of them to the visitor.- Parameters:
visitor
- The visitor that should be used to add decision trees to.- Throws:
InitializationException
- This exception is thrown when the decision trees could not be initialized.
-
-