Package adams.flow.core
Interface OptionalCallableActor
-
- All Known Subinterfaces:
TimedActor
- All Known Implementing Classes:
AbstractCopyCallableActor
,CopyCallableSink
,CopyCallableSource
,CopyCallableStandalone
,CopyCallableTransformer
,TimedSubProcess
,TimedTee
,TimedTrigger
,WekaGeneticAlgorithm
public interface OptionalCallableActor
Interface for actors that have an optional callable actor.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getOptional()
Returns whether the callable actor is optional.String
optionalTipText()
Returns the tip text for this property.void
setOptional(boolean value)
Sets whether the callable actor is optional.
-
-
-
Method Detail
-
setOptional
void setOptional(boolean value)
Sets whether the callable actor is optional.- Parameters:
value
- true if optional
-
getOptional
boolean getOptional()
Returns whether the callable actor is optional.- Returns:
- true if optional
-
optionalTipText
String optionalTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-