Package org.flowable.dmn.model
Class DmnExtensionElement
- java.lang.Object
-
- org.flowable.dmn.model.DmnElement
-
- org.flowable.dmn.model.DmnExtensionElement
-
public class DmnExtensionElement extends DmnElement
- Author:
- Bassam Al-Sarori
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,List<DmnExtensionAttribute>>attributesextension attributes could be part of each elementprotected Map<String,List<DmnExtensionElement>>childElementsprotected StringelementTextprotected Stringnameprotected Stringnamespaceprotected StringnamespacePrefix-
Fields inherited from class org.flowable.dmn.model.DmnElement
description, extensionElements, id, label
-
-
Constructor Summary
Constructors Constructor Description DmnExtensionElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddChildElement(DmnExtensionElement childElement)DmnExtensionElementclone()Map<String,List<DmnExtensionElement>>getChildElements()StringgetElementText()StringgetName()StringgetNamespace()StringgetNamespacePrefix()voidsetChildElements(Map<String,List<DmnExtensionElement>> childElements)voidsetElementText(String elementText)voidsetName(String name)voidsetNamespace(String namespace)voidsetNamespacePrefix(String namespacePrefix)voidsetValues(DmnExtensionElement otherElement)-
Methods inherited from class org.flowable.dmn.model.DmnElement
addAttribute, addExtensionElement, getAttributes, getAttributeValue, getDescription, getExtensionElements, getId, getLabel, setAttributes, setDescription, setExtensionElements, setId, setLabel, setValues
-
-
-
-
Field Detail
-
name
protected String name
-
namespacePrefix
protected String namespacePrefix
-
namespace
protected String namespace
-
elementText
protected String elementText
-
childElements
protected Map<String,List<DmnExtensionElement>> childElements
-
attributes
protected Map<String,List<DmnExtensionAttribute>> attributes
extension attributes could be part of each element
-
-
Method Detail
-
getElementText
public String getElementText()
-
setElementText
public void setElementText(String elementText)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getNamespacePrefix
public String getNamespacePrefix()
-
setNamespacePrefix
public void setNamespacePrefix(String namespacePrefix)
-
getNamespace
public String getNamespace()
-
setNamespace
public void setNamespace(String namespace)
-
getChildElements
public Map<String,List<DmnExtensionElement>> getChildElements()
-
addChildElement
public void addChildElement(DmnExtensionElement childElement)
-
setChildElements
public void setChildElements(Map<String,List<DmnExtensionElement>> childElements)
-
clone
public DmnExtensionElement clone()
-
setValues
public void setValues(DmnExtensionElement otherElement)
-
-