Uses of Interface
org.camunda.bpm.model.xml.instance.DomElement
Packages that use DomElement
Package
Description
-
Uses of DomElement in org.camunda.bpm.model.xml.impl.instance
Classes in org.camunda.bpm.model.xml.impl.instance that implement DomElementMethods in org.camunda.bpm.model.xml.impl.instance that return DomElementModifier and TypeMethodDescriptionDomDocumentImpl.createElement
(String namespaceUri, String localName) ModelElementInstanceImpl.getDomElement()
ModelTypeInstanceContext.getDomElement()
DomDocumentImpl.getElementById
(String id) DomElementImpl.getParentElement()
DomDocumentImpl.getRootElement()
DomElementImpl.getRootElement()
Methods in org.camunda.bpm.model.xml.impl.instance that return types with arguments of type DomElementModifier and TypeMethodDescriptionDomElementImpl.getChildElements()
DomElementImpl.getChildElementsByNameNs
(String namespaceUri, String elementName) DomElementImpl.getChildElementsByNameNs
(Set<String> namespaceUris, String elementName) DomElementImpl.getChildElementsByType
(ModelInstanceImpl modelInstance, Class<? extends ModelElementInstance> elementType) DomDocumentImpl.getElementsByNameNs
(String namespaceUri, String localName) Methods in org.camunda.bpm.model.xml.impl.instance with parameters of type DomElementModifier and TypeMethodDescriptionvoid
DomElementImpl.appendChild
(DomElement childDomElement) void
DomElementImpl.insertChildElementAfter
(DomElement elementToInsert, DomElement insertAfter) boolean
DomElementImpl.removeChild
(DomElement childDomElement) void
DomElementImpl.replaceChild
(DomElement newChildDomElement, DomElement existingChildDomElement) void
DomDocumentImpl.setRootElement
(DomElement rootElement) Constructors in org.camunda.bpm.model.xml.impl.instance with parameters of type DomElementModifierConstructorDescriptionModelTypeInstanceContext
(DomElement domElement, ModelInstanceImpl model, ModelElementTypeImpl modelType) -
Uses of DomElement in org.camunda.bpm.model.xml.impl.type
Methods in org.camunda.bpm.model.xml.impl.type that return types with arguments of type DomElementModifier and TypeMethodDescriptionprotected List<DomElement>
ModelElementTypeImpl.getElementsByNameNs
(DomDocument document, String namespaceURI) Methods in org.camunda.bpm.model.xml.impl.type with parameters of type DomElementModifier and TypeMethodDescriptionModelElementTypeImpl.newInstance
(ModelInstanceImpl modelInstance, DomElement domElement) -
Uses of DomElement in org.camunda.bpm.model.xml.impl.type.reference
Methods in org.camunda.bpm.model.xml.impl.type.reference that return types with arguments of type DomElementModifier and TypeMethodDescriptionprotected Collection<DomElement>
ElementReferenceCollectionImpl.getView
(ModelElementInstanceImpl referenceSourceParentElement) protected Collection<DomElement>
IdsElementReferenceCollectionImpl.getView
(ModelElementInstanceImpl referenceSourceParentElement) Method parameters in org.camunda.bpm.model.xml.impl.type.reference with type arguments of type DomElementModifier and TypeMethodDescriptionprotected void
ElementReferenceCollectionImpl.performClearOperation
(ModelElementInstanceImpl referenceSourceParentElement, Collection<DomElement> elementsToRemove) -
Uses of DomElement in org.camunda.bpm.model.xml.impl.util
Fields in org.camunda.bpm.model.xml.impl.util declared as DomElementModifier and TypeFieldDescriptionprotected DomElement
XmlQName.element
protected DomElement
XmlQName.rootElement
Methods in org.camunda.bpm.model.xml.impl.util that return types with arguments of type DomElementModifier and TypeMethodDescriptionstatic List<DomElement>
DomUtil.filterNodeList
(NodeList nodeList, DomUtil.NodeListFilter filter) Allows to apply aDomUtil.NodeListFilter
to aNodeList
.static List<DomElement>
DomUtil.filterNodeListByName
(NodeList nodeList, String namespaceUri, String localName) Filter aNodeList
retaining all elements with a specific namestatic List<DomElement>
DomUtil.filterNodeListByType
(NodeList nodeList, ModelInstanceImpl modelInstance, Class<?> type) Filter aNodeList
retaining all elements with a specific typestatic List<DomElement>
DomUtil.filterNodeListForElements
(NodeList nodeList) Filters aNodeList
retaining all elementsMethods in org.camunda.bpm.model.xml.impl.util with parameters of type DomElementModifier and TypeMethodDescriptionstatic ModelElementInstance
ModelUtil.getModelElement
(DomElement domElement, ModelInstanceImpl modelInstance) Returns theModelElement
for a DOM element.protected static ModelElementTypeImpl
ModelUtil.getModelElement
(DomElement domElement, ModelInstanceImpl modelInstance, String namespaceUri) static ModelElementInstance
ModelUtil.getModelElement
(DomElement domElement, ModelInstanceImpl modelInstance, ModelElementTypeImpl modelType) Returns theModelElement
for a DOM element.Method parameters in org.camunda.bpm.model.xml.impl.util with type arguments of type DomElementModifier and TypeMethodDescriptionstatic <T extends ModelElementInstance>
Collection<T>ModelUtil.getModelElementCollection
(Collection<DomElement> view, ModelInstanceImpl model) Get a collection of all model element instances in a viewConstructors in org.camunda.bpm.model.xml.impl.util with parameters of type DomElementModifierConstructorDescriptionXmlQName
(DomDocument document, DomElement element, String namespaceUri, String localName) XmlQName
(DomElement element, String namespaceUri, String localName) -
Uses of DomElement in org.camunda.bpm.model.xml.instance
Methods in org.camunda.bpm.model.xml.instance that return DomElementModifier and TypeMethodDescriptionDomDocument.createElement
(String namespaceUri, String localName) Creates a new element in the dom document.ModelElementInstance.getDomElement()
Returns the represented DOMDomElement
.DomDocument.getElementById
(String id) Gets an element by its id.DomElement.getParentElement()
Returns the parent element of this element.DomDocument.getRootElement()
Returns the root element of the document.DomElement.getRootElement()
Returns the root element of the document which contains this element.Methods in org.camunda.bpm.model.xml.instance that return types with arguments of type DomElementModifier and TypeMethodDescriptionDomElement.getChildElements()
Returns all child elements of this element.DomElement.getChildElementsByNameNs
(String namespaceUris, String elementName) Returns all child elements of this element with a specific namespace + nameDomElement.getChildElementsByNameNs
(Set<String> namespaceUris, String elementName) Returns all child elements of this element with specific namespaces + name.DomElement.getChildElementsByType
(ModelInstanceImpl modelInstance, Class<? extends ModelElementInstance> elementType) Returns all child elements of this element with a specific type.DomDocument.getElementsByNameNs
(String namespaceUri, String localName) Gets all elements with the namespace and name.Methods in org.camunda.bpm.model.xml.instance with parameters of type DomElementModifier and TypeMethodDescriptionvoid
DomElement.appendChild
(DomElement childElement) Appends the element to the child elements of this element.void
DomElement.insertChildElementAfter
(DomElement elementToInsert, DomElement insertAfter) Inserts the new child element after another child element.boolean
DomElement.removeChild
(DomElement domElement) Removes a child element of this element.void
DomElement.replaceChild
(DomElement newChildDomElement, DomElement existingChildDomElement) Replaces a child element with a new element.void
DomDocument.setRootElement
(DomElement rootElement) Sets the root element of the DOM document.