Class CamundaFormFieldImpl
- 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.camunda.CamundaFormFieldImpl
-
- All Implemented Interfaces:
BpmnModelElementInstance
,CamundaFormField
,ModelElementInstance
public class CamundaFormFieldImpl extends BpmnModelElementInstanceImpl implements CamundaFormField
The BPMN formField camunda extension element- Author:
- Sebastian Menski
-
-
Field Summary
Fields Modifier and Type Field Description protected static Attribute<java.lang.String>
camundaDatePatternAttribute
protected static Attribute<java.lang.String>
camundaDefaultValueAttribute
protected static Attribute<java.lang.String>
camundaIdAttribute
protected static Attribute<java.lang.String>
camundaLabelAttribute
protected static ChildElement<CamundaProperties>
camundaPropertiesChild
protected static Attribute<java.lang.String>
camundaTypeAttribute
protected static ChildElement<CamundaValidation>
camundaValidationChild
protected static ChildElementCollection<CamundaValue>
camundaValueCollection
-
Fields inherited from class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl
modelInstance
-
-
Constructor Summary
Constructors Constructor Description CamundaFormFieldImpl(ModelTypeInstanceContext instanceContext)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCamundaDatePattern()
java.lang.String
getCamundaDefaultValue()
java.lang.String
getCamundaId()
java.lang.String
getCamundaLabel()
CamundaProperties
getCamundaProperties()
java.lang.String
getCamundaType()
CamundaValidation
getCamundaValidation()
java.util.Collection<CamundaValue>
getCamundaValues()
static void
registerType(ModelBuilder modelBuilder)
void
setCamundaDatePattern(java.lang.String camundaDatePattern)
void
setCamundaDefaultValue(java.lang.String camundaDefaultValue)
void
setCamundaId(java.lang.String camundaId)
void
setCamundaLabel(java.lang.String camundaLabel)
void
setCamundaProperties(CamundaProperties camundaProperties)
void
setCamundaType(java.lang.String camundaType)
void
setCamundaValidation(CamundaValidation camundaValidation)
-
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
-
camundaIdAttribute
protected static Attribute<java.lang.String> camundaIdAttribute
-
camundaLabelAttribute
protected static Attribute<java.lang.String> camundaLabelAttribute
-
camundaTypeAttribute
protected static Attribute<java.lang.String> camundaTypeAttribute
-
camundaDatePatternAttribute
protected static Attribute<java.lang.String> camundaDatePatternAttribute
-
camundaDefaultValueAttribute
protected static Attribute<java.lang.String> camundaDefaultValueAttribute
-
camundaPropertiesChild
protected static ChildElement<CamundaProperties> camundaPropertiesChild
-
camundaValidationChild
protected static ChildElement<CamundaValidation> camundaValidationChild
-
camundaValueCollection
protected static ChildElementCollection<CamundaValue> camundaValueCollection
-
-
Constructor Detail
-
CamundaFormFieldImpl
public CamundaFormFieldImpl(ModelTypeInstanceContext instanceContext)
-
-
Method Detail
-
registerType
public static void registerType(ModelBuilder modelBuilder)
-
getCamundaId
public java.lang.String getCamundaId()
- Specified by:
getCamundaId
in interfaceCamundaFormField
-
setCamundaId
public void setCamundaId(java.lang.String camundaId)
- Specified by:
setCamundaId
in interfaceCamundaFormField
-
getCamundaLabel
public java.lang.String getCamundaLabel()
- Specified by:
getCamundaLabel
in interfaceCamundaFormField
-
setCamundaLabel
public void setCamundaLabel(java.lang.String camundaLabel)
- Specified by:
setCamundaLabel
in interfaceCamundaFormField
-
getCamundaType
public java.lang.String getCamundaType()
- Specified by:
getCamundaType
in interfaceCamundaFormField
-
setCamundaType
public void setCamundaType(java.lang.String camundaType)
- Specified by:
setCamundaType
in interfaceCamundaFormField
-
getCamundaDatePattern
public java.lang.String getCamundaDatePattern()
- Specified by:
getCamundaDatePattern
in interfaceCamundaFormField
-
setCamundaDatePattern
public void setCamundaDatePattern(java.lang.String camundaDatePattern)
- Specified by:
setCamundaDatePattern
in interfaceCamundaFormField
-
getCamundaDefaultValue
public java.lang.String getCamundaDefaultValue()
- Specified by:
getCamundaDefaultValue
in interfaceCamundaFormField
-
setCamundaDefaultValue
public void setCamundaDefaultValue(java.lang.String camundaDefaultValue)
- Specified by:
setCamundaDefaultValue
in interfaceCamundaFormField
-
getCamundaProperties
public CamundaProperties getCamundaProperties()
- Specified by:
getCamundaProperties
in interfaceCamundaFormField
-
setCamundaProperties
public void setCamundaProperties(CamundaProperties camundaProperties)
- Specified by:
setCamundaProperties
in interfaceCamundaFormField
-
getCamundaValidation
public CamundaValidation getCamundaValidation()
- Specified by:
getCamundaValidation
in interfaceCamundaFormField
-
setCamundaValidation
public void setCamundaValidation(CamundaValidation camundaValidation)
- Specified by:
setCamundaValidation
in interfaceCamundaFormField
-
getCamundaValues
public java.util.Collection<CamundaValue> getCamundaValues()
- Specified by:
getCamundaValues
in interfaceCamundaFormField
-
-