Class TDataAssociation
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TDataAssociation
-
- Direct Known Subclasses:
TDataInputAssociation
,TDataOutputAssociation
public class TDataAssociation extends TBaseElement
Java class for tDataAssociation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tDataAssociation"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tBaseElement"> <sequence> <element name="sourceRef" type="{http://www.w3.org/2001/XMLSchema}IDREF" maxOccurs="unbounded" minOccurs="0"/> <element name="targetRef" type="{http://www.w3.org/2001/XMLSchema}IDREF"/> <element name="transformation" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFormalExpression" minOccurs="0"/> <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}assignment" maxOccurs="unbounded" minOccurs="0"/> </sequence> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<TAssignment>
assignment
protected List<javax.xml.bind.JAXBElement<Object>>
sourceRef
protected Object
targetRef
protected TFormalExpression
transformation
-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TDataAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TAssignment>
getAssignment()
Gets the value of the assignment property.List<javax.xml.bind.JAXBElement<Object>>
getSourceRef()
Gets the value of the sourceRef property.Object
getTargetRef()
Gets the value of the targetRef property.TFormalExpression
getTransformation()
Gets the value of the transformation property.void
setTargetRef(Object value)
Sets the value of the targetRef property.void
setTransformation(TFormalExpression value)
Sets the value of the transformation property.-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Field Detail
-
targetRef
protected Object targetRef
-
transformation
protected TFormalExpression transformation
-
assignment
protected List<TAssignment> assignment
-
-
Method Detail
-
getSourceRef
public List<javax.xml.bind.JAXBElement<Object>> getSourceRef()
Gets the value of the sourceRef 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 sourceRef property.For example, to add a new item, do as follows:
getSourceRef().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement
<
Object
>
-
getTargetRef
public Object getTargetRef()
Gets the value of the targetRef property.- Returns:
- possible object is
Object
-
setTargetRef
public void setTargetRef(Object value)
Sets the value of the targetRef property.- Parameters:
value
- allowed object isObject
-
getTransformation
public TFormalExpression getTransformation()
Gets the value of the transformation property.- Returns:
- possible object is
TFormalExpression
-
setTransformation
public void setTransformation(TFormalExpression value)
Sets the value of the transformation property.- Parameters:
value
- allowed object isTFormalExpression
-
getAssignment
public List<TAssignment> getAssignment()
Gets the value of the assignment 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 assignment property.For example, to add a new item, do as follows:
getAssignment().add(newItem);
Objects of the following type(s) are allowed in the list
TAssignment
-
-