Enumeration Priority
Rules that govern interaction between events that belong to the same maneuver.
- Used in:
-
Event
|
Enumeration Literals
|
| |
Name |
Applied Stereotypes |
Description |
| D |
overwrite |
deprecated
|
If a starting event has priority Overwrite, all events in running state, within the same scope (maneuver) as the starting event, should be issued a stop command (stop transition). |
| |
override |
|
If a starting event has priority Override, all events in running state, within the same scope (maneuver) as the starting event, should be issued a stop command (stop transition). |
| |
parallel |
|
Execute in parallel to other events. |
| |
skip |
|
If a starting event has priority Skip, then it will not be ran if there is any other event in the same scope (maneuver) in the running state. |
|
|
Deprecation
|
- Enumeration literal overwrite deprecated.
|
|
XSD 1.4 Representation
|
<xsd:simpleType name="Priority">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="overwrite">
<xsd:annotation>
<xsd:appinfo>
deprecated
</xsd:appinfo>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="override"/>
<xsd:enumeration value="parallel"/>
<xsd:enumeration value="skip"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>
|
|
|
Change log from version 1.3
|
- Enumeration literal 'overwrite'. Stereotype <<deprecated>>. Tagged value 'withVersion' removed.
- Enumeration literal 'overwrite'. Stereotype <<deprecated>>. Tagged value 'comment' removed.
|
|
Stereotype Details Information
|
-
Enumeration literal overwrite
|
To XSD