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. With version 1.2. Deprecated for consistency. Use override instead.
|
XSD 1.3 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>
|
|
Stereotype Details Information |
- Enumeration literal overwrite
- deprecated [withVersion: "1.2"; comment: "Deprecated for consistency. Use override instead"]
|
To XSD