Package adams.flow.core
Interface AutomatableInteraction
-
- All Known Subinterfaces:
AutomatableInteractiveActor
- All Known Implementing Classes:
AbstractSelectObjects,CompareObjectLocations,EnterManyValues,EnterValue,PromptUser,SelectCharset,SelectDateTime,SelectDirectory,SelectFile,SelectObjects,WekaChooseAttributes,WekaSelectDataset,WekaSelectObjects
public interface AutomatableInteractionFor classes that can be switched from interactive to automated.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisNonInteractive()Returns whether interactiveness is enabled/disabled.StringnonInteractiveTipText()Returns the tip text for this property.voidsetNonInteractive(boolean value)Sets whether to enable/disable interactiveness.
-
-
-
Method Detail
-
setNonInteractive
void setNonInteractive(boolean value)
Sets whether to enable/disable interactiveness.- Parameters:
value- if true actor is not interactive, but automated
-
isNonInteractive
boolean isNonInteractive()
Returns whether interactiveness is enabled/disabled.- Returns:
- true if actor is not interactive i.e., automated
-
nonInteractiveTipText
String nonInteractiveTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-