OTX Reference
|
|
End nodes. More...
Classes | |
class | Break |
Loop terminate prematurely More... | |
class | Continue |
Next iteration More... | |
class | ExtensibleEndNode |
Declares an end node which can be extented by additional realisations defined in new OTX extensions using the standardised extension mechanism, example: goto. More... | |
class | Return |
Terminate procedure prematurely More... | |
class | TerminateLanes |
Termination of all lanes More... | |
class | Throw |
Throws Exceptions More... | |
Additional Inherited Members | |
Public Attributes inherited from OpenTestSystem.Otx.Core.Nodes.Node | |
System.Boolean | disabled |
Cardinality [0..1] To turn on/off a node. A deactivated node is not executed at run time. More... | |
Public Attributes inherited from OpenTestSystem.Otx.Core.UniversalTypes.NamedAndSpecified | |
ExtensibleData[] | extendedData |
Declares general data for NamedAndSpecified which can be extented by new general data defined in new OTX extensions using the standardised extension mechanism. For example it can be used to specify specification relevant content in a better structured way. More... | |
OtxId | id |
Unique identifier of an element More... | |
MetaData | metaData |
Additional tool-specific data More... | |
OtxName | name |
Name of an element More... | |
NamedAndSpecifiedSpecification[] | specification |
Descriptive specification More... | |
End nodes.
After processing has executed the last Node of a Flow, control is passed to the next-in-row Node in the outer Flow. If there is no more outer Flow – this is the case when the end of the procedure level Flow is reached – procedure execution ends. This is the standard behaviour for implicit Flow ends. By contrast, the explicit EndNode
types enforce a different end-of-flow behaviour.