Package org.flowable.bpmn.model
Class FlowElement
- java.lang.Object
-
- org.flowable.bpmn.model.BaseElement
-
- org.flowable.bpmn.model.FlowElement
-
- All Implemented Interfaces:
HasExecutionListeners,HasExtensionAttributes
- Direct Known Subclasses:
DataObject,DataStoreReference,FlowNode,SequenceFlow
public abstract class FlowElement extends BaseElement implements HasExecutionListeners
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdocumentationprotected List<FlowableListener>executionListenersprotected Stringnameprotected FlowElementsContainerparentContainer-
Fields inherited from class org.flowable.bpmn.model.BaseElement
attributes, extensionElements, id, xmlColumnNumber, xmlRowNumber
-
-
Constructor Summary
Constructors Constructor Description FlowElement()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FlowElementclone()StringgetDocumentation()List<FlowableListener>getExecutionListeners()StringgetName()FlowElementsContainergetParentContainer()SubProcessgetSubProcess()voidsetDocumentation(String documentation)voidsetExecutionListeners(List<FlowableListener> executionListeners)voidsetName(String name)voidsetParentContainer(FlowElementsContainer parentContainer)voidsetValues(FlowElement otherElement)-
Methods inherited from class org.flowable.bpmn.model.BaseElement
addAttribute, addExtensionElement, getAttributes, getAttributeValue, getExtensionElements, getId, getXmlColumnNumber, getXmlRowNumber, setAttributes, setExtensionElements, setId, setValues, setXmlColumnNumber, setXmlRowNumber
-
-
-
-
Field Detail
-
name
protected String name
-
documentation
protected String documentation
-
executionListeners
protected List<FlowableListener> executionListeners
-
parentContainer
protected FlowElementsContainer parentContainer
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDocumentation
public String getDocumentation()
-
setDocumentation
public void setDocumentation(String documentation)
-
getExecutionListeners
public List<FlowableListener> getExecutionListeners()
- Specified by:
getExecutionListenersin interfaceHasExecutionListeners
-
setExecutionListeners
public void setExecutionListeners(List<FlowableListener> executionListeners)
- Specified by:
setExecutionListenersin interfaceHasExecutionListeners
-
getParentContainer
public FlowElementsContainer getParentContainer()
-
getSubProcess
public SubProcess getSubProcess()
-
setParentContainer
public void setParentContainer(FlowElementsContainer parentContainer)
-
clone
public abstract FlowElement clone()
- Specified by:
clonein classBaseElement
-
setValues
public void setValues(FlowElement otherElement)
-
-