Class DefinitionsImpl
- java.lang.Object
-
- org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
-
- org.camunda.bpm.model.bpmn.impl.instance.BpmnModelElementInstanceImpl
-
- org.camunda.bpm.model.bpmn.impl.instance.DefinitionsImpl
-
- All Implemented Interfaces:
BpmnModelElementInstance
,Definitions
,ModelElementInstance
public class DefinitionsImpl extends BpmnModelElementInstanceImpl implements Definitions
The BPMN definitions element- Author:
- Daniel Meyer, Sebastian Menski
-
-
Field Summary
Fields Modifier and Type Field Description protected static ChildElementCollection<BpmnDiagram>
bpmnDiagramCollection
protected static Attribute<String>
exporterAttribute
protected static Attribute<String>
exporterVersionAttribute
protected static Attribute<String>
expressionLanguageAttribute
protected static ChildElementCollection<Extension>
extensionCollection
protected static Attribute<String>
idAttribute
protected static ChildElementCollection<Import>
importCollection
protected static Attribute<String>
nameAttribute
protected static ChildElementCollection<Relationship>
relationshipCollection
protected static ChildElementCollection<RootElement>
rootElementCollection
protected static Attribute<String>
targetNamespaceAttribute
protected static Attribute<String>
typeLanguageAttribute
-
Fields inherited from class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
modelInstance
-
-
Constructor Summary
Constructors Constructor Description DefinitionsImpl(ModelTypeInstanceContext instanceContext)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<BpmnDiagram>
getBpmDiagrams()
String
getExporter()
String
getExporterVersion()
String
getExpressionLanguage()
Collection<Extension>
getExtensions()
String
getId()
Collection<Import>
getImports()
String
getName()
Collection<Relationship>
getRelationships()
Collection<RootElement>
getRootElements()
String
getTargetNamespace()
String
getTypeLanguage()
static void
registerType(ModelBuilder bpmnModelBuilder)
void
setExporter(String exporter)
void
setExporterVersion(String exporterVersion)
void
setExpressionLanguage(String expressionLanguage)
void
setId(String id)
void
setName(String name)
void
setTargetNamespace(String namespace)
void
setTypeLanguage(String typeLanguage)
-
Methods inherited from class org.camunda.bpm.model.bpmn.impl.instance.BpmnModelElementInstanceImpl
builder, 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, updateAfterReplacement
-
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.BpmnModelElementInstance
builder, 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, updateAfterReplacement
-
-
-
-
Field Detail
-
importCollection
protected static ChildElementCollection<Import> importCollection
-
extensionCollection
protected static ChildElementCollection<Extension> extensionCollection
-
rootElementCollection
protected static ChildElementCollection<RootElement> rootElementCollection
-
bpmnDiagramCollection
protected static ChildElementCollection<BpmnDiagram> bpmnDiagramCollection
-
relationshipCollection
protected static ChildElementCollection<Relationship> relationshipCollection
-
-
Constructor Detail
-
DefinitionsImpl
public DefinitionsImpl(ModelTypeInstanceContext instanceContext)
-
-
Method Detail
-
registerType
public static void registerType(ModelBuilder bpmnModelBuilder)
-
getId
public String getId()
- Specified by:
getId
in interfaceDefinitions
-
setId
public void setId(String id)
- Specified by:
setId
in interfaceDefinitions
-
getName
public String getName()
- Specified by:
getName
in interfaceDefinitions
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceDefinitions
-
getTargetNamespace
public String getTargetNamespace()
- Specified by:
getTargetNamespace
in interfaceDefinitions
-
setTargetNamespace
public void setTargetNamespace(String namespace)
- Specified by:
setTargetNamespace
in interfaceDefinitions
-
getExpressionLanguage
public String getExpressionLanguage()
- Specified by:
getExpressionLanguage
in interfaceDefinitions
-
setExpressionLanguage
public void setExpressionLanguage(String expressionLanguage)
- Specified by:
setExpressionLanguage
in interfaceDefinitions
-
getTypeLanguage
public String getTypeLanguage()
- Specified by:
getTypeLanguage
in interfaceDefinitions
-
setTypeLanguage
public void setTypeLanguage(String typeLanguage)
- Specified by:
setTypeLanguage
in interfaceDefinitions
-
getExporter
public String getExporter()
- Specified by:
getExporter
in interfaceDefinitions
-
setExporter
public void setExporter(String exporter)
- Specified by:
setExporter
in interfaceDefinitions
-
getExporterVersion
public String getExporterVersion()
- Specified by:
getExporterVersion
in interfaceDefinitions
-
setExporterVersion
public void setExporterVersion(String exporterVersion)
- Specified by:
setExporterVersion
in interfaceDefinitions
-
getImports
public Collection<Import> getImports()
- Specified by:
getImports
in interfaceDefinitions
-
getExtensions
public Collection<Extension> getExtensions()
- Specified by:
getExtensions
in interfaceDefinitions
-
getRootElements
public Collection<RootElement> getRootElements()
- Specified by:
getRootElements
in interfaceDefinitions
-
getBpmDiagrams
public Collection<BpmnDiagram> getBpmDiagrams()
- Specified by:
getBpmDiagrams
in interfaceDefinitions
-
getRelationships
public Collection<Relationship> getRelationships()
- Specified by:
getRelationships
in interfaceDefinitions
-
-