Package org.omg.spec.bpmn.model
Class BPMNDiagram
- java.lang.Object
-
- org.omg.spec.bpmn.model.Diagram
-
- org.omg.spec.bpmn.model.BPMNDiagram
-
public class BPMNDiagram extends Diagram
Java class for BPMNDiagram complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BPMNDiagram"> <complexContent> <extension base="{http://www.omg.org/spec/DD/20100524/DI}Diagram"> <sequence> <element ref="{http://www.omg.org/spec/BPMN/20100524/DI}BPMNPlane"/> <element ref="{http://www.omg.org/spec/BPMN/20100524/DI}BPMNLabelStyle" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BPMNLabelStyle>
bpmnLabelStyle
protected BPMNPlane
bpmnPlane
-
Fields inherited from class org.omg.spec.bpmn.model.Diagram
documentation, id, name, resolution
-
-
Constructor Summary
Constructors Constructor Description BPMNDiagram()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BPMNLabelStyle>
getBPMNLabelStyle()
Gets the value of the bpmnLabelStyle property.BPMNPlane
getBPMNPlane()
Gets the value of the bpmnPlane property.void
setBPMNPlane(BPMNPlane value)
Sets the value of the bpmnPlane property.-
Methods inherited from class org.omg.spec.bpmn.model.Diagram
getDocumentation, getId, getName, getResolution, setDocumentation, setId, setName, setResolution
-
-
-
-
Field Detail
-
bpmnPlane
protected BPMNPlane bpmnPlane
-
bpmnLabelStyle
protected List<BPMNLabelStyle> bpmnLabelStyle
-
-
Method Detail
-
getBPMNPlane
public BPMNPlane getBPMNPlane()
Gets the value of the bpmnPlane property.- Returns:
- possible object is
BPMNPlane
-
setBPMNPlane
public void setBPMNPlane(BPMNPlane value)
Sets the value of the bpmnPlane property.- Parameters:
value
- allowed object isBPMNPlane
-
getBPMNLabelStyle
public List<BPMNLabelStyle> getBPMNLabelStyle()
Gets the value of the bpmnLabelStyle property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the bpmnLabelStyle property.For example, to add a new item, do as follows:
getBPMNLabelStyle().add(newItem);
Objects of the following type(s) are allowed in the list
BPMNLabelStyle
-
-