Package org.flowable.bpmn.model
Class CustomProperty
- java.lang.Object
-
- org.flowable.bpmn.model.BaseElement
-
- org.flowable.bpmn.model.CustomProperty
-
- All Implemented Interfaces:
HasExtensionAttributes
public class CustomProperty extends BaseElement
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected ComplexDataTypecomplexValueprotected Stringnameprotected StringsimpleValue-
Fields inherited from class org.flowable.bpmn.model.BaseElement
attributes, extensionElements, id, xmlColumnNumber, xmlRowNumber
-
-
Constructor Summary
Constructors Constructor Description CustomProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomPropertyclone()ComplexDataTypegetComplexValue()StringgetName()StringgetSimpleValue()voidsetComplexValue(ComplexDataType complexValue)voidsetName(String name)voidsetSimpleValue(String simpleValue)voidsetValues(CustomProperty otherProperty)-
Methods inherited from class org.flowable.bpmn.model.BaseElement
addAttribute, addExtensionElement, getAttributes, getAttributeValue, getExtensionElements, getId, getXmlColumnNumber, getXmlRowNumber, setAttributes, setExtensionElements, setId, setValues, setXmlColumnNumber, setXmlRowNumber
-
-
-
-
Field Detail
-
name
protected String name
-
simpleValue
protected String simpleValue
-
complexValue
protected ComplexDataType complexValue
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getSimpleValue
public String getSimpleValue()
-
setSimpleValue
public void setSimpleValue(String simpleValue)
-
getComplexValue
public ComplexDataType getComplexValue()
-
setComplexValue
public void setComplexValue(ComplexDataType complexValue)
-
clone
public CustomProperty clone()
- Specified by:
clonein classBaseElement
-
setValues
public void setValues(CustomProperty otherProperty)
-
-