org.camunda.bpm.model.bpmn.impl.instance
Class FlowNodeImpl

java.lang.Object
  extended by org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
      extended by org.camunda.bpm.model.bpmn.impl.instance.BpmnModelElementInstanceImpl
          extended by org.camunda.bpm.model.bpmn.impl.instance.BaseElementImpl
              extended by org.camunda.bpm.model.bpmn.impl.instance.FlowElementImpl
                  extended by org.camunda.bpm.model.bpmn.impl.instance.FlowNodeImpl
All Implemented Interfaces:
BaseElement, BpmnModelElementInstance, FlowElement, FlowNode, org.camunda.bpm.model.xml.instance.ModelElementInstance
Direct Known Subclasses:
ActivityImpl, EventImpl, GatewayImpl

public abstract class FlowNodeImpl
extends FlowElementImpl
implements FlowNode

The BPMN flowNode element

Author:
Sebastian Menski

Field Summary
protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaAsyncAfter
          Camunda Attributes
protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaAsyncBefore
           
protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaExclusive
           
protected static org.camunda.bpm.model.xml.type.attribute.Attribute<String> camundaJobPriority
           
protected static org.camunda.bpm.model.xml.type.reference.ElementReferenceCollection<SequenceFlow,Incoming> incomingCollection
           
protected static org.camunda.bpm.model.xml.type.reference.ElementReferenceCollection<SequenceFlow,Outgoing> outgoingCollection
           
 
Fields inherited from class org.camunda.bpm.model.bpmn.impl.instance.FlowElementImpl
auditingChild, categoryValueRefCollection, monitoringChild, nameAttribute
 
Fields inherited from class org.camunda.bpm.model.bpmn.impl.instance.BaseElementImpl
documentationCollection, extensionElementsChild, idAttribute
 
Fields inherited from class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
modelInstance
 
Constructor Summary
FlowNodeImpl(org.camunda.bpm.model.xml.impl.instance.ModelTypeInstanceContext context)
           
 
Method Summary
 AbstractFlowNodeBuilder builder()
          Returns a new fluent builder for the element if implemented.
 String getCamundaJobPriority()
           
 Collection<SequenceFlow> getIncoming()
           
 Collection<SequenceFlow> getOutgoing()
           
 Query<FlowNode> getPreviousNodes()
           
 Query<FlowNode> getSucceedingNodes()
           
 boolean isCamundaAsyncAfter()
           
 boolean isCamundaAsyncBefore()
          Camunda Attributes
 boolean isCamundaExclusive()
           
static void registerType(org.camunda.bpm.model.xml.ModelBuilder modelBuilder)
           
 void setCamundaAsyncAfter(boolean isCamundaAsyncAfter)
           
 void setCamundaAsyncBefore(boolean isCamundaAsyncBefore)
           
 void setCamundaExclusive(boolean isCamundaExclusive)
           
 void setCamundaJobPriority(String jobPriority)
           
 void updateAfterReplacement()
           
 
Methods inherited from class org.camunda.bpm.model.bpmn.impl.instance.FlowElementImpl
getAuditing, getCategoryValueRefs, getMonitoring, getName, setAuditing, setMonitoring, setName
 
Methods inherited from class org.camunda.bpm.model.bpmn.impl.instance.BaseElementImpl
getDiagramElement, getDocumentations, getExtensionElements, getId, getIncomingReferencesByType, setExtensionElements, setId
 
Methods inherited from class org.camunda.bpm.model.bpmn.impl.instance.BpmnModelElementInstanceImpl
getScope, isScope
 
Methods inherited from class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
addChildElement, asSet, equals, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, hashCode, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.FlowElement
getAuditing, getCategoryValueRefs, getMonitoring, getName, setAuditing, setMonitoring, setName
 
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BaseElement
getDiagramElement, getDocumentations, getExtensionElements, getId, setExtensionElements, setId
 
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BpmnModelElementInstance
getScope, isScope
 
Methods inherited from interface org.camunda.bpm.model.xml.instance.ModelElementInstance
addChildElement, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs
 

Field Detail

incomingCollection

protected static org.camunda.bpm.model.xml.type.reference.ElementReferenceCollection<SequenceFlow,Incoming> incomingCollection

outgoingCollection

protected static org.camunda.bpm.model.xml.type.reference.ElementReferenceCollection<SequenceFlow,Outgoing> outgoingCollection

camundaAsyncAfter

protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaAsyncAfter
Camunda Attributes


camundaAsyncBefore

protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaAsyncBefore

camundaExclusive

protected static org.camunda.bpm.model.xml.type.attribute.Attribute<Boolean> camundaExclusive

camundaJobPriority

protected static org.camunda.bpm.model.xml.type.attribute.Attribute<String> camundaJobPriority
Constructor Detail

FlowNodeImpl

public FlowNodeImpl(org.camunda.bpm.model.xml.impl.instance.ModelTypeInstanceContext context)
Method Detail

registerType

public static void registerType(org.camunda.bpm.model.xml.ModelBuilder modelBuilder)

builder

public AbstractFlowNodeBuilder builder()
Description copied from interface: BpmnModelElementInstance
Returns a new fluent builder for the element if implemented.

Specified by:
builder in interface BpmnModelElementInstance
Specified by:
builder in interface FlowNode
Overrides:
builder in class BpmnModelElementInstanceImpl
Returns:
the builder object

updateAfterReplacement

public void updateAfterReplacement()
Specified by:
updateAfterReplacement in interface org.camunda.bpm.model.xml.instance.ModelElementInstance
Overrides:
updateAfterReplacement in class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl

getIncoming

public Collection<SequenceFlow> getIncoming()
Specified by:
getIncoming in interface FlowNode

getOutgoing

public Collection<SequenceFlow> getOutgoing()
Specified by:
getOutgoing in interface FlowNode

getPreviousNodes

public Query<FlowNode> getPreviousNodes()
Specified by:
getPreviousNodes in interface FlowNode

getSucceedingNodes

public Query<FlowNode> getSucceedingNodes()
Specified by:
getSucceedingNodes in interface FlowNode

isCamundaAsyncBefore

public boolean isCamundaAsyncBefore()
Camunda Attributes

Specified by:
isCamundaAsyncBefore in interface FlowNode

setCamundaAsyncBefore

public void setCamundaAsyncBefore(boolean isCamundaAsyncBefore)
Specified by:
setCamundaAsyncBefore in interface FlowNode

isCamundaAsyncAfter

public boolean isCamundaAsyncAfter()
Specified by:
isCamundaAsyncAfter in interface FlowNode

setCamundaAsyncAfter

public void setCamundaAsyncAfter(boolean isCamundaAsyncAfter)
Specified by:
setCamundaAsyncAfter in interface FlowNode

isCamundaExclusive

public boolean isCamundaExclusive()
Specified by:
isCamundaExclusive in interface FlowNode

setCamundaExclusive

public void setCamundaExclusive(boolean isCamundaExclusive)
Specified by:
setCamundaExclusive in interface FlowNode

getCamundaJobPriority

public String getCamundaJobPriority()
Specified by:
getCamundaJobPriority in interface FlowNode

setCamundaJobPriority

public void setCamundaJobPriority(String jobPriority)
Specified by:
setCamundaJobPriority in interface FlowNode


Copyright © 2017 camunda services GmbH. All rights reserved.