|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of DomElement in org.camunda.bpm.model.xml.impl.instance |
|---|
| Classes in org.camunda.bpm.model.xml.impl.instance that implement DomElement | |
|---|---|
class |
DomElementImpl
|
| Methods in org.camunda.bpm.model.xml.impl.instance that return DomElement | |
|---|---|
DomElement |
DomDocumentImpl.createElement(String namespaceUri,
String localName)
|
DomElement |
ModelTypeInstanceContext.getDomElement()
|
DomElement |
ModelElementInstanceImpl.getDomElement()
|
DomElement |
DomDocumentImpl.getElementById(String id)
|
DomElement |
DomElementImpl.getParentElement()
|
DomElement |
DomElementImpl.getRootElement()
|
DomElement |
DomDocumentImpl.getRootElement()
|
| Methods in org.camunda.bpm.model.xml.impl.instance that return types with arguments of type DomElement | |
|---|---|
List<DomElement> |
DomElementImpl.getChildElements()
|
List<DomElement> |
DomElementImpl.getChildElementsByNameNs(Set<String> namespaceUris,
String elementName)
|
List<DomElement> |
DomElementImpl.getChildElementsByNameNs(String namespaceUri,
String elementName)
|
List<DomElement> |
DomElementImpl.getChildElementsByType(ModelInstanceImpl modelInstance,
Class<? extends ModelElementInstance> elementType)
|
List<DomElement> |
DomDocumentImpl.getElementsByNameNs(String namespaceUri,
String localName)
|
| Methods in org.camunda.bpm.model.xml.impl.instance with parameters of type DomElement | |
|---|---|
void |
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 DomElement | |
|---|---|
ModelTypeInstanceContext(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 DomElement | |
|---|---|
protected List<DomElement> |
ModelElementTypeImpl.getElementsByNameNs(DomDocument document,
String namespaceURI)
|
| Methods in org.camunda.bpm.model.xml.impl.type with parameters of type DomElement | |
|---|---|
ModelElementInstance |
ModelElementTypeImpl.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 DomElement | |
|---|---|
protected Collection<DomElement> |
IdsElementReferenceCollectionImpl.getView(ModelElementInstanceImpl referenceSourceParentElement)
|
protected Collection<DomElement> |
ElementReferenceCollectionImpl.getView(ModelElementInstanceImpl referenceSourceParentElement)
|
| Method parameters in org.camunda.bpm.model.xml.impl.type.reference with type arguments of type DomElement | |
|---|---|
protected 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 DomElement | |
|---|---|
protected DomElement |
XmlQName.element
|
protected DomElement |
XmlQName.rootElement
|
| Methods in org.camunda.bpm.model.xml.impl.util that return types with arguments of type DomElement | |
|---|---|
static List<DomElement> |
DomUtil.filterNodeList(NodeList nodeList,
DomUtil.NodeListFilter filter)
Allows to apply a DomUtil.NodeListFilter to a NodeList. |
static List<DomElement> |
DomUtil.filterNodeListByName(NodeList nodeList,
String namespaceUri,
String localName)
Filter a NodeList retaining all elements with a specific name |
static List<DomElement> |
DomUtil.filterNodeListByType(NodeList nodeList,
ModelInstanceImpl modelInstance,
Class<?> type)
Filter a NodeList retaining all elements with a specific type |
static List<DomElement> |
DomUtil.filterNodeListForElements(NodeList nodeList)
Filters a NodeList retaining all elements |
| Methods in org.camunda.bpm.model.xml.impl.util with parameters of type DomElement | |
|---|---|
static ModelElementInstance |
ModelUtil.getModelElement(DomElement domElement,
ModelInstanceImpl modelInstance)
Returns the ModelElement for a DOM element. |
protected static ModelElementTypeImpl |
ModelUtil.getModelElement(DomElement domElement,
ModelInstanceImpl modelInstance,
String namespaceUri)
|
| Method parameters in org.camunda.bpm.model.xml.impl.util with type arguments of type DomElement | ||
|---|---|---|
static
|
ModelUtil.getModelElementCollection(Collection<DomElement> view,
ModelInstanceImpl model)
Get a collection of all model element instances in a view |
|
| Constructors in org.camunda.bpm.model.xml.impl.util with parameters of type DomElement | |
|---|---|
XmlQName(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 DomElement | |
|---|---|
DomElement |
DomDocument.createElement(String namespaceUri,
String localName)
Creates a new element in the dom document. |
DomElement |
ModelElementInstance.getDomElement()
Returns the represented DOM DomElement. |
DomElement |
DomDocument.getElementById(String id)
Gets an element by its id. |
DomElement |
DomElement.getParentElement()
Returns the parent element of this element. |
DomElement |
DomDocument.getRootElement()
Returns the root element of the document. |
DomElement |
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 DomElement | |
|---|---|
List<DomElement> |
DomElement.getChildElements()
Returns all child elements of this element. |
List<DomElement> |
DomElement.getChildElementsByNameNs(Set<String> namespaceUris,
String elementName)
Returns all child elements of this element with specific namespaces + name. |
List<DomElement> |
DomElement.getChildElementsByNameNs(String namespaceUris,
String elementName)
Returns all child elements of this element with a specific namespace + name |
List<DomElement> |
DomElement.getChildElementsByType(ModelInstanceImpl modelInstance,
Class<? extends ModelElementInstance> elementType)
Returns all child elements of this element with a specific type. |
List<DomElement> |
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 DomElement | |
|---|---|
void |
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||