1.3.1.1.18 ConditionalNode
A conditional node consists of one or more clauses. Each clause consists of a test section and a body section. When the conditional node begins execution, the test sections of the clauses are executed. If one or more test sections yield a true value, one of the corresponding body sections will be executed. If more than one test section yields a true value, only one body section will be executed. If no test section yields a true value, then no body section is executed; this may be a semantic error if output values are expected from the conditional node. An â??elseâ?� clause is a clause that is a successor to all other clauses in the conditional and whose test part always returns true.
StructuredActivityNodeIsAssuredIsDeterminateConditionalNodeClause
Attribute
Description
boolean IsAssured [1..1]
If true, the modeler asserts that at least one test will succeed. The default value is false.
boolean IsDeterminate [1..1]
If true, the modeler asserts that at most one test will succeed. The default value is false.
Association
Description
OwnedClause : Clause [0..*]
The owner conditional node of the Clause.