-
Notifications
You must be signed in to change notification settings - Fork 0
Artifacts
Salvatore Gonda edited this page Feb 26, 2024
·
5 revisions
This package has all elements and attributes defined.
- TextAnnotation
- Text
Note:
If the text annotation is linked to an element, the Association element from the flow package must also be included.
The first first example is without any association
<bpmn:process id="Process_1ek6lbt" isExecutable="true">
<bpmn:textAnnotation id="TextAnnotation_1vtat0p">
<bpmn:text>Starting the process ...</bpmn:text>
</bpmn:textAnnotation>
</bpmn:process>
The second example is with an association to the start event
BPMN
<bpmn:process id="Process_1ek6lbt" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" />
<bpmn:textAnnotation id="TextAnnotation_1vtat0p">
<bpmn:text>Starting the process ...</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_007dven" associationDirection="None" sourceRef="StartEvent_1" targetRef="TextAnnotation_1vtat0p" />
</bpmn:process>
Go