Modifier and Type | Method and Description |
---|---|
XMLTriple |
XMLTriple.cloneObject()
Creates and returns a deep copy of this
XMLTriple object. |
Modifier and Type | Method and Description |
---|---|
int |
XMLAttributes.add(XMLTriple triple,
String value)
Adds an attribute to this list of attributes.
|
int |
XMLToken.addAttr(XMLTriple triple,
String value)
Adds an attribute to the XML element represented by this token.
|
void |
XMLOutputStream.endElement(XMLTriple triple)
Writes the given element to the stream.
|
int |
XMLToken.getAttrIndex(XMLTriple triple)
Returns the index of the attribute defined by the given
XMLTriple
object. |
String |
XMLToken.getAttrValue(XMLTriple triple)
Returns the value of the attribute specified by a given
XMLTriple object. |
int |
XMLAttributes.getIndex(XMLTriple triple)
Returns the index of the attribute defined by the given
XMLTriple object. |
String |
XMLAttributes.getValue(XMLTriple triple)
Return the value of an attribute described by a given
XMLTriple object. |
boolean |
XMLToken.hasAttr(XMLTriple triple)
Returns
true if an attribute defined by a given XMLTriple object
exists. |
boolean |
XMLAttributes.hasAttribute(XMLTriple triple)
Returns
true if an attribute with the given properties exists. |
int |
XMLAttributes.remove(XMLTriple triple)
Removes a specific attribute from this list of attributes.
|
int |
XMLToken.removeAttr(XMLTriple triple)
Removes an attribute from the XML element represented by this token.
|
int |
XMLToken.setTriple(XMLTriple triple)
Sets the name, namespace prefix and namespace URI of this token.
|
void |
XMLOutputStream.startElement(XMLTriple triple)
Writes the given XML start element
prefix:name on this output stream. |
void |
XMLOutputStream.startEndElement(XMLTriple triple)
Writes the given start element to this output stream.
|
void |
XMLOutputStream.writeAttribute(XMLTriple triple,
boolean value)
Writes the given attribute and value to this output stream.
|
void |
XMLOutputStream.writeAttribute(XMLTriple triple,
double value)
Writes the given attribute and value to this output stream.
|
void |
XMLOutputStream.writeAttribute(XMLTriple triple,
int value)
Writes the given attribute and value to this output stream.
|
void |
XMLOutputStream.writeAttribute(XMLTriple triple,
String value)
Writes the given attribute and value to this output stream.
|
Constructor and Description |
---|
XMLNode(XMLTriple triple)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
long line)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
long line,
long column)
Creates an end element
XMLNode . |
XMLNode(XMLTriple triple,
XMLAttributes attributes)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
long line)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
long line,
long column)
Creates a start element
XMLNode with the given set of attributes. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLNode(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates a new start element
XMLNode with the given set of attributes and
namespace declarations. |
XMLToken(XMLTriple triple)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
long line)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
long line,
long column)
Creates an XML end element.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
long line)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
long line,
long column)
Creates an XML start element with attributes.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line)
Creates an XML start element with attributes and namespace declarations.
|
XMLToken(XMLTriple triple,
XMLAttributes attributes,
XMLNamespaces namespaces,
long line,
long column)
Creates an XML start element with attributes and namespace declarations.
|
XMLTriple(XMLTriple orig)
Copy constructor; creates a copy of this
XMLTriple object. |