Class Element
java.lang.Object
org.camunda.bpm.engine.impl.util.xml.Element
Represents one XML element.
- Author:
- Tom Baeyens, Joram Barrez
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
appendText
(String text) Due to the nature of SAX parsing, sometimes the characters of an element are not processed at once.attributeNS
(Namespace namespace, String name) attributeNS
(Namespace namespace, String name, String defaultValue) void
collectIds
(List<String> ids) allows to recursively collect the ids of all elements in the tree.protected String
composeMapKey
(String attributeUri, String attributeName) elements()
elementsNS
(String nameSpaceUri, String tagName) elementsNS
(Namespace nameSpace, String tagName) int
int
getLine()
getText()
getUri()
toString()
-
Field Details
-
uri
-
tagName
-
attributeMap
-
line
protected int line -
column
protected int column -
text
-
elements
-
-
Constructor Details
-
Element
-
-
Method Details
-
elements
-
elementsNS
-
elementsNS
-
element
-
elementNS
-
add
-
attribute
-
attributes
-
attributeNS
-
attribute
-
attributeNS
-
composeMapKey
-
elements
-
toString
-
getUri
-
getTagName
-
getLine
public int getLine() -
getColumn
public int getColumn() -
appendText
Due to the nature of SAX parsing, sometimes the characters of an element are not processed at once. So instead of a setText operation, we need to have an appendText operation. -
getText
-
collectIds
allows to recursively collect the ids of all elements in the tree.
-