class Ens.BPL.If
extends Ens.BPL.Activity
This class represents the If Activity. A supplied condition expression is evaluated. If the condition evaluates to true
the sequence of activities defined within the True activity list are executed. If the conditions evaluates to false then
the sequence of activities defined within the False activity list are exectued. At least one of the True or False activity
lists MUST be none empty.
property Condition
as %String;
This holds the selection condition
property False
as Ens.BPL.ActivityList;
This holds the activities to be performed if the condition
evaluates to be false
property True
as Ens.BPL.ActivityList;
This holds the activities to be performed if the condition
evaluates to true