Package adams.flow.core
Interface OptionalModelResetWithVariable
-
- All Known Implementing Classes:
AbstractProcessWekaInstanceWithModel
,WekaClassifying
,WekaClustering
public interface OptionalModelResetWithVariable
Interface for flow components that allow (optionally) a model to be reset via a monitored variable.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableName
getModelResetVariable()
Returns the variable to monitor for changes in order to reset the model.boolean
getUseModelResetVariable()
Returns whether to use a variable to monitor for changes in order to reset the model.String
modelResetVariableTipText()
Returns the tip text for this property.void
setModelResetVariable(VariableName value)
Sets the variable to monitor for changes in order to reset the model.void
setUseModelResetVariable(boolean value)
Sets whether to use a variable to monitor for changes in order to reset the model.String
useModelResetVariableTipText()
Returns the tip text for this property.
-
-
-
Method Detail
-
setUseModelResetVariable
void setUseModelResetVariable(boolean value)
Sets whether to use a variable to monitor for changes in order to reset the model.- Parameters:
value
- true if to use monitor variable
-
getUseModelResetVariable
boolean getUseModelResetVariable()
Returns whether to use a variable to monitor for changes in order to reset the model.- Returns:
- true if to use monitor variable
-
useModelResetVariableTipText
String useModelResetVariableTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setModelResetVariable
void setModelResetVariable(VariableName value)
Sets the variable to monitor for changes in order to reset the model.- Parameters:
value
- the variable
-
getModelResetVariable
VariableName getModelResetVariable()
Returns the variable to monitor for changes in order to reset the model.- Returns:
- the variable
-
modelResetVariableTipText
String modelResetVariableTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-