Interface CamundaFormProperty
-
- All Superinterfaces:
BpmnModelElementInstance,org.camunda.bpm.model.xml.instance.ModelElementInstance
- All Known Implementing Classes:
CamundaFormPropertyImpl
public interface CamundaFormProperty extends BpmnModelElementInstance
The BPMN formProperty camunda extension element- Author:
- Sebastian Menski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCamundaDatePattern()StringgetCamundaDefault()StringgetCamundaExpression()StringgetCamundaId()StringgetCamundaName()StringgetCamundaType()Collection<CamundaValue>getCamundaValues()StringgetCamundaVariable()booleanisCamundaReadable()booleanisCamundaRequired()booleanisCamundaWriteable()voidsetCamundaDatePattern(String camundaDatePattern)voidsetCamundaDefault(String camundaDefault)voidsetCamundaExpression(String camundaExpression)voidsetCamundaId(String camundaId)voidsetCamundaName(String camundaName)voidsetCamundaReadable(boolean isCamundaReadable)voidsetCamundaRequired(boolean isCamundaRequired)voidsetCamundaType(String camundaType)voidsetCamundaVariable(String camundaVariable)voidsetCamundaWriteable(boolean isCamundaWriteable)-
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
-
-
-
-
Method Detail
-
getCamundaId
String getCamundaId()
-
setCamundaId
void setCamundaId(String camundaId)
-
getCamundaName
String getCamundaName()
-
setCamundaName
void setCamundaName(String camundaName)
-
getCamundaType
String getCamundaType()
-
setCamundaType
void setCamundaType(String camundaType)
-
isCamundaRequired
boolean isCamundaRequired()
-
setCamundaRequired
void setCamundaRequired(boolean isCamundaRequired)
-
isCamundaReadable
boolean isCamundaReadable()
-
setCamundaReadable
void setCamundaReadable(boolean isCamundaReadable)
-
isCamundaWriteable
boolean isCamundaWriteable()
-
setCamundaWriteable
void setCamundaWriteable(boolean isCamundaWriteable)
-
getCamundaVariable
String getCamundaVariable()
-
setCamundaVariable
void setCamundaVariable(String camundaVariable)
-
getCamundaExpression
String getCamundaExpression()
-
setCamundaExpression
void setCamundaExpression(String camundaExpression)
-
getCamundaDatePattern
String getCamundaDatePattern()
-
setCamundaDatePattern
void setCamundaDatePattern(String camundaDatePattern)
-
getCamundaDefault
String getCamundaDefault()
-
setCamundaDefault
void setCamundaDefault(String camundaDefault)
-
getCamundaValues
Collection<CamundaValue> getCamundaValues()
-
-