Skip to content

Artifacts

Salvatore Gonda edited this page Feb 26, 2024 · 5 revisions

Description

Status

This package has all elements and attributes defined.

Dependencies

  • TextAnnotation
    • Text

Note:

If the text annotation is linked to an element, the Association element from the flow package must also be included.

TextAnnotation

Text

Example

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

Clone this wiki locally