Package org.omg.spec.bpmn.model
Class TAssignment
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TAssignment
-
public class TAssignment extends TBaseElement
Java class for tAssignment complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tAssignment"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tBaseElement"> <sequence> <element name="from" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tExpression"/> <element name="to" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tExpression"/> </sequence> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TExpression
from
protected TExpression
to
-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TAssignment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TExpression
getFrom()
Gets the value of the from property.TExpression
getTo()
Gets the value of the to property.void
setFrom(TExpression value)
Sets the value of the from property.void
setTo(TExpression value)
Sets the value of the to property.-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Field Detail
-
from
protected TExpression from
-
to
protected TExpression to
-
-
Method Detail
-
getFrom
public TExpression getFrom()
Gets the value of the from property.- Returns:
- possible object is
TExpression
-
setFrom
public void setFrom(TExpression value)
Sets the value of the from property.- Parameters:
value
- allowed object isTExpression
-
getTo
public TExpression getTo()
Gets the value of the to property.- Returns:
- possible object is
TExpression
-
setTo
public void setTo(TExpression value)
Sets the value of the to property.- Parameters:
value
- allowed object isTExpression
-
-