Uses of Interface
org.camunda.bpm.model.bpmn.BpmnModelInstance

Packages that use BpmnModelInstance
org.camunda.bpm.model.bpmn   
org.camunda.bpm.model.bpmn.builder   
org.camunda.bpm.model.bpmn.impl   
 

Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn
 

Methods in org.camunda.bpm.model.bpmn that return BpmnModelInstance
 BpmnModelInstance BpmnModelInstance.clone()
          Copies the BPMN model instance but not the model.
static BpmnModelInstance Bpmn.createEmptyModel()
          Allows creating an new, empty BpmnModelInstance.
protected  BpmnModelInstance Bpmn.doCreateEmptyModel()
           
protected  BpmnModelInstance Bpmn.doReadModelFromFile(File file)
           
protected  BpmnModelInstance Bpmn.doReadModelFromInputStream(InputStream is)
           
static BpmnModelInstance Bpmn.readModelFromFile(File file)
          Allows reading a BpmnModelInstance from a File.
static BpmnModelInstance Bpmn.readModelFromStream(InputStream stream)
          Allows reading a BpmnModelInstance from an InputStream
 

Methods in org.camunda.bpm.model.bpmn with parameters of type BpmnModelInstance
static String Bpmn.convertToString(BpmnModelInstance modelInstance)
          Allows the conversion of a BpmnModelInstance to an String.
protected  String Bpmn.doConvertToString(BpmnModelInstance modelInstance)
           
protected  void Bpmn.doValidateModel(BpmnModelInstance modelInstance)
           
protected  void Bpmn.doWriteModelToFile(File file, BpmnModelInstance modelInstance)
           
protected  void Bpmn.doWriteModelToOutputStream(OutputStream os, BpmnModelInstance modelInstance)
           
static void Bpmn.validateModel(BpmnModelInstance modelInstance)
          Validate model DOM document
static void Bpmn.writeModelToFile(File file, BpmnModelInstance modelInstance)
          Allows writing a BpmnModelInstance to a File.
static void Bpmn.writeModelToStream(OutputStream stream, BpmnModelInstance modelInstance)
          Allows writing a BpmnModelInstance to an OutputStream.
 

Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn.builder
 

Fields in org.camunda.bpm.model.bpmn.builder declared as BpmnModelInstance
protected  BpmnModelInstance AbstractBpmnModelElementBuilder.modelInstance
           
 

Methods in org.camunda.bpm.model.bpmn.builder that return BpmnModelInstance
 BpmnModelInstance AbstractBpmnModelElementBuilder.done()
          Finishes the process building.
 

Constructors in org.camunda.bpm.model.bpmn.builder with parameters of type BpmnModelInstance
AbstractActivityBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractBaseElementBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractBoundaryEventBuilder(BpmnModelInstance modelInstance, BoundaryEvent element, Class<?> selfType)
           
AbstractBpmnModelElementBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractBusinessRuleTaskBuilder(BpmnModelInstance modelInstance, BusinessRuleTask element, Class<?> selfType)
           
AbstractCallableElementBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractCallActivityBuilder(BpmnModelInstance modelInstance, CallActivity element, Class<?> selfType)
           
AbstractCamundaFormFieldBuilder(BpmnModelInstance modelInstance, BaseElement parent, CamundaFormField element, Class<?> selfType)
           
AbstractCatchEventBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractCompensateEventDefinitionBuilder(BpmnModelInstance modelInstance, CompensateEventDefinition element, Class<?> selfType)
           
AbstractComplexGatewayBuilder(BpmnModelInstance modelInstance, ComplexGateway element, Class<?> selfType)
           
AbstractConditionalEventDefinitionBuilder(BpmnModelInstance modelInstance, ConditionalEventDefinition element, Class<?> selfType)
           
AbstractEndEventBuilder(BpmnModelInstance modelInstance, EndEvent element, Class<?> selfType)
           
AbstractErrorEventDefinitionBuilder(BpmnModelInstance modelInstance, ErrorEventDefinition element, Class<?> selfType)
           
AbstractEventBasedGatewayBuilder(BpmnModelInstance modelInstance, EventBasedGateway element, Class<?> selfType)
           
AbstractEventBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractEventSubProcessBuilder(BpmnModelInstance modelInstance, SubProcess element, Class<?> selfType)
           
AbstractExclusiveGatewayBuilder(BpmnModelInstance modelInstance, ExclusiveGateway element, Class<?> selfType)
           
AbstractFlowElementBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractFlowNodeBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractGatewayBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractInclusiveGatewayBuilder(BpmnModelInstance modelInstance, InclusiveGateway element, Class<?> selfType)
           
AbstractIntermediateCatchEventBuilder(BpmnModelInstance modelInstance, IntermediateCatchEvent element, Class<?> selfType)
           
AbstractIntermediateThrowEventBuilder(BpmnModelInstance modelInstance, IntermediateThrowEvent element, Class<?> selfType)
           
AbstractManualTaskBuilder(BpmnModelInstance modelInstance, ManualTask element, Class<?> selfType)
           
AbstractMessageEventDefinitionBuilder(BpmnModelInstance modelInstance, MessageEventDefinition element, Class<?> selfType)
           
AbstractMultiInstanceLoopCharacteristicsBuilder(BpmnModelInstance modelInstance, MultiInstanceLoopCharacteristics element, Class<?> selfType)
           
AbstractParallelGatewayBuilder(BpmnModelInstance modelInstance, ParallelGateway element, Class<?> selfType)
           
AbstractProcessBuilder(BpmnModelInstance modelInstance, Process element, Class<?> selfType)
           
AbstractReceiveTaskBuilder(BpmnModelInstance modelInstance, ReceiveTask element, Class<?> selfType)
           
AbstractRootElementBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractScriptTaskBuilder(BpmnModelInstance modelInstance, ScriptTask element, Class<?> selfType)
           
AbstractSendTaskBuilder(BpmnModelInstance modelInstance, SendTask element, Class<?> selfType)
           
AbstractSequenceFlowBuilder(BpmnModelInstance modelInstance, SequenceFlow element, Class<?> selfType)
           
AbstractServiceTaskBuilder(BpmnModelInstance modelInstance, ServiceTask element, Class<?> selfType)
           
AbstractStartEventBuilder(BpmnModelInstance modelInstance, StartEvent element, Class<?> selfType)
           
AbstractSubProcessBuilder(BpmnModelInstance modelInstance, SubProcess element, Class<?> selfType)
           
AbstractTaskBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractThrowEventBuilder(BpmnModelInstance modelInstance, E element, Class<?> selfType)
           
AbstractTransactionBuilder(BpmnModelInstance modelInstance, Transaction element, Class<?> selfType)
           
AbstractUserTaskBuilder(BpmnModelInstance modelInstance, UserTask element, Class<?> selfType)
           
BoundaryEventBuilder(BpmnModelInstance modelInstance, BoundaryEvent element)
           
BusinessRuleTaskBuilder(BpmnModelInstance modelInstance, BusinessRuleTask element)
           
CallActivityBuilder(BpmnModelInstance modelInstance, CallActivity element)
           
CamundaStartEventFormFieldBuilder(BpmnModelInstance modelInstance, BaseElement parent, CamundaFormField element)
           
CamundaUserTaskFormFieldBuilder(BpmnModelInstance modelInstance, BaseElement parent, CamundaFormField element)
           
CompensateEventDefinitionBuilder(BpmnModelInstance modelInstance, CompensateEventDefinition element)
           
ComplexGatewayBuilder(BpmnModelInstance modelInstance, ComplexGateway element)
           
ConditionalEventDefinitionBuilder(BpmnModelInstance modelInstance, ConditionalEventDefinition element)
           
EndEventBuilder(BpmnModelInstance modelInstance, EndEvent element)
           
ErrorEventDefinitionBuilder(BpmnModelInstance modelInstance, ErrorEventDefinition element)
           
EventBasedGatewayBuilder(BpmnModelInstance modelInstance, EventBasedGateway element)
           
EventSubProcessBuilder(BpmnModelInstance modelInstance, SubProcess element)
           
ExclusiveGatewayBuilder(BpmnModelInstance modelInstance, ExclusiveGateway element)
           
InclusiveGatewayBuilder(BpmnModelInstance modelInstance, InclusiveGateway element)
           
IntermediateCatchEventBuilder(BpmnModelInstance modelInstance, IntermediateCatchEvent element)
           
IntermediateThrowEventBuilder(BpmnModelInstance modelInstance, IntermediateThrowEvent element)
           
ManualTaskBuilder(BpmnModelInstance modelInstance, ManualTask element)
           
MessageEventDefinitionBuilder(BpmnModelInstance modelInstance, MessageEventDefinition element)
           
MultiInstanceLoopCharacteristicsBuilder(BpmnModelInstance modelInstance, MultiInstanceLoopCharacteristics element)
           
ParallelGatewayBuilder(BpmnModelInstance modelInstance, ParallelGateway element)
           
ProcessBuilder(BpmnModelInstance modelInstance, Process process)
           
ReceiveTaskBuilder(BpmnModelInstance modelInstance, ReceiveTask element)
           
ScriptTaskBuilder(BpmnModelInstance modelInstance, ScriptTask element)
           
SendTaskBuilder(BpmnModelInstance modelInstance, SendTask element)
           
SequenceFlowBuilder(BpmnModelInstance modelInstance, SequenceFlow element)
           
ServiceTaskBuilder(BpmnModelInstance modelInstance, ServiceTask element)
           
StartEventBuilder(BpmnModelInstance modelInstance, StartEvent element)
           
SubProcessBuilder(BpmnModelInstance modelInstance, SubProcess element)
           
TransactionBuilder(BpmnModelInstance modelInstance, Transaction element)
           
UserTaskBuilder(BpmnModelInstance modelInstance, UserTask element)
           
 

Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn.impl
 

Classes in org.camunda.bpm.model.bpmn.impl that implement BpmnModelInstance
 class BpmnModelInstanceImpl
          The Bpmn Model
 

Methods in org.camunda.bpm.model.bpmn.impl that return BpmnModelInstance
 BpmnModelInstance BpmnModelInstanceImpl.clone()
           
 



Copyright © 2017 camunda services GmbH. All rights reserved.