- addAttribute(Attribute) - Method in class nu.xom.Element
-
Adds an attribute to this element, replacing any existing
attribute with the same local name and namespace URI.
- addNamespace(String, String) - Method in class nu.xom.XPathContext
-
Binds the specified prefix to the specified namespace URI.
- addNamespaceDeclaration(String, String) - Method in class nu.xom.Element
-
Declares a namespace prefix.
- append(Node) - Method in class nu.xom.Nodes
-
Adds a node at the end of this list.
- appendChild(String) - Method in class nu.xom.Element
-
Converts a string to a text node
and appends that node to the children of this node.
- appendChild(Node) - Method in class nu.xom.ParentNode
-
Appends a node to the children of this node.
- Attribute - Class in nu.xom
-
This class represents an attribute such as
type="empty"
or
xlink:href="http://www.example.com"
.
- Attribute(String, String) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in no namespace with the
specified name and value and undeclared type.
- Attribute(String, String, Attribute.Type) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in no namespace with the
specified name, value, and type.
- Attribute(String, String, String) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in the specified namespace with the
specified name and value and undeclared type.
- Attribute(String, String, String, Attribute.Type) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in the specified namespace with the
specified name, value, and type.
- Attribute(Attribute) - Constructor for class nu.xom.Attribute
-
Creates a copy of the specified attribute.
- Attribute.Type - Class in nu.xom
-
Uses the type-safe enumeration
design pattern to represent attribute types,
as specified by XML DTDs.