Package org.omg.spec.bpmn.model
Class TAssociation
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TArtifact
-
- org.omg.spec.bpmn.model.TAssociation
-
public class TAssociation extends TArtifact
Java class for tAssociation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tAssociation"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tArtifact"> <attribute name="sourceRef" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" /> <attribute name="targetRef" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" /> <attribute name="associationDirection" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tAssociationDirection" default="None" /> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TAssociationDirection
associationDirection
protected QName
sourceRef
protected QName
targetRef
-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TAssociationDirection
getAssociationDirection()
Gets the value of the associationDirection property.QName
getSourceRef()
Gets the value of the sourceRef property.QName
getTargetRef()
Gets the value of the targetRef property.void
setAssociationDirection(TAssociationDirection value)
Sets the value of the associationDirection property.void
setSourceRef(QName value)
Sets the value of the sourceRef property.void
setTargetRef(QName value)
Sets the value of the targetRef property.-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Field Detail
-
sourceRef
protected QName sourceRef
-
targetRef
protected QName targetRef
-
associationDirection
protected TAssociationDirection associationDirection
-
-
Method Detail
-
getSourceRef
public QName getSourceRef()
Gets the value of the sourceRef property.- Returns:
- possible object is
QName
-
setSourceRef
public void setSourceRef(QName value)
Sets the value of the sourceRef property.- Parameters:
value
- allowed object isQName
-
getTargetRef
public QName getTargetRef()
Gets the value of the targetRef property.- Returns:
- possible object is
QName
-
setTargetRef
public void setTargetRef(QName value)
Sets the value of the targetRef property.- Parameters:
value
- allowed object isQName
-
getAssociationDirection
public TAssociationDirection getAssociationDirection()
Gets the value of the associationDirection property.- Returns:
- possible object is
TAssociationDirection
-
setAssociationDirection
public void setAssociationDirection(TAssociationDirection value)
Sets the value of the associationDirection property.- Parameters:
value
- allowed object isTAssociationDirection
-
-