Package org.flowable.cmmn.model
Class Association
- java.lang.Object
-
- org.flowable.cmmn.model.BaseElement
-
- org.flowable.cmmn.model.CmmnElement
-
- org.flowable.cmmn.model.Association
-
- All Implemented Interfaces:
HasExtensionAttributes
public class Association extends CmmnElement
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected BaseElementsourceElementprotected StringsourceRefprotected BaseElementtargetElementprotected StringtargetRefprotected StringtransitionEvent-
Fields inherited from class org.flowable.cmmn.model.CmmnElement
documentation, documentationTextFormat
-
Fields inherited from class org.flowable.cmmn.model.BaseElement
attributes, extensionElements, id, xmlColumnNumber, xmlRowNumber
-
-
Constructor Summary
Constructors Constructor Description Association()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Associationclone()BaseElementgetSourceElement()StringgetSourceRef()BaseElementgetTargetElement()StringgetTargetRef()StringgetTransitionEvent()voidsetSourceElement(BaseElement sourceElement)voidsetSourceRef(String sourceRef)voidsetTargetElement(BaseElement targetElement)voidsetTargetRef(String targetRef)voidsetTransitionEvent(String transitionEvent)voidsetValues(Association otherElement)-
Methods inherited from class org.flowable.cmmn.model.CmmnElement
getDocumentation, getDocumentationTextFormat, setDocumentation, setDocumentationTextFormat, setValues
-
Methods inherited from class org.flowable.cmmn.model.BaseElement
addAttribute, addExtensionElement, getAttributes, getAttributeValue, getExtensionElements, getId, getXmlColumnNumber, getXmlRowNumber, setAttributes, setExtensionElements, setId, setValues, setXmlColumnNumber, setXmlRowNumber
-
-
-
-
Field Detail
-
sourceRef
protected String sourceRef
-
sourceElement
protected BaseElement sourceElement
-
targetRef
protected String targetRef
-
targetElement
protected BaseElement targetElement
-
transitionEvent
protected String transitionEvent
-
-
Method Detail
-
getSourceRef
public String getSourceRef()
-
setSourceRef
public void setSourceRef(String sourceRef)
-
getSourceElement
public BaseElement getSourceElement()
-
setSourceElement
public void setSourceElement(BaseElement sourceElement)
-
getTargetRef
public String getTargetRef()
-
setTargetRef
public void setTargetRef(String targetRef)
-
getTargetElement
public BaseElement getTargetElement()
-
setTargetElement
public void setTargetElement(BaseElement targetElement)
-
getTransitionEvent
public String getTransitionEvent()
-
setTransitionEvent
public void setTransitionEvent(String transitionEvent)
-
clone
public Association clone()
-
setValues
public void setValues(Association otherElement)
-
-