Package adams.flow.condition.bool
Interface BooleanConditionSupporter
-
- All Known Implementing Classes:
Block
,Breakpoint
,ClassBreakpoint
,ConditionalSequence
,ConditionalSubProcess
,ConditionalTee
,ConditionalTrigger
,IfThenElse
,PathBreakpoint
,RaiseError
,WhileLoop
public interface BooleanConditionSupporter
Interface for classes that handle boolean conditions.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanCondition
getCondition()
Returns the break condition to evaluate.void
setCondition(BooleanCondition value)
Sets the break condition to evaluate.
-
-
-
Method Detail
-
setCondition
void setCondition(BooleanCondition value)
Sets the break condition to evaluate.- Parameters:
value
- the expression
-
getCondition
BooleanCondition getCondition()
Returns the break condition to evaluate.- Returns:
- the expression
-
-