|
JDOM 1.1.3 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Namespace | |
---|---|
org.jdom | Classes to represent the components of an XML document. |
org.jdom.filter | Classes to programmatically filter nodes of a document based on type, name, value, or other aspects and to boolean and/or/negate these rules. |
org.jdom.xpath | Support for XPath from within JDOM. |
Uses of Namespace in org.jdom |
---|
Fields in org.jdom declared as Namespace | |
---|---|
protected Namespace |
Element.namespace
The namespace of the element |
protected Namespace |
Attribute.namespace
The of the Attribute |
static Namespace |
Namespace.NO_NAMESPACE
Define a Namespace for when not in a namespace |
static Namespace |
Namespace.XML_NAMESPACE
Define a Namespace for the standard xml prefix. |
Methods in org.jdom that return Namespace | |
---|---|
Namespace |
Element.getNamespace()
Returns the element's Namespace . |
Namespace |
Attribute.getNamespace()
This will return this Attribute 's
. |
static Namespace |
Namespace.getNamespace(java.lang.String uri)
This will retrieve (if in existence) or create (if not) a Namespace for the supplied URI, and make it usable
as a default namespace, as no prefix is supplied. |
Namespace |
Element.getNamespace(java.lang.String prefix)
Returns the Namespace corresponding to the given prefix in scope
for this element. |
static Namespace |
Namespace.getNamespace(java.lang.String prefix,
java.lang.String uri)
This will retrieve (if in existence) or create (if not) a Namespace for the supplied prefix and URI. |
Methods in org.jdom with parameters of type Namespace | |
---|---|
void |
UncheckedJDOMFactory.addNamespaceDeclaration(Element parent,
Namespace additional)
|
void |
JDOMFactory.addNamespaceDeclaration(Element element,
Namespace additional)
|
void |
DefaultJDOMFactory.addNamespaceDeclaration(Element parent,
Namespace additional)
|
void |
Element.addNamespaceDeclaration(Namespace additionalNamespace)
Adds a namespace declarations to this element. |
Attribute |
UncheckedJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
|
Attribute |
JDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
This will create a new Attribute with the
specified (local) name, value, and type, and in the provided
. |
Attribute |
DefaultJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
|
Attribute |
UncheckedJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
|
Attribute |
JDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
This will create a new Attribute with the
specified (local) name and value, and in the provided
. |
Attribute |
DefaultJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
|
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Attribute attribute)
Check if a collides with a
's namespace. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Element element)
Check if a collides with a
's namespace. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
java.util.List list)
Check if a collides with any namespace
from a list of objects. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Namespace other)
Check if two namespaces collide. |
Element |
UncheckedJDOMFactory.element(java.lang.String name,
Namespace namespace)
|
Element |
JDOMFactory.element(java.lang.String name,
Namespace namespace)
This will create a new Element
with the supplied (local) name, and define
the to be used. |
Element |
DefaultJDOMFactory.element(java.lang.String name,
Namespace namespace)
|
Attribute |
Element.getAttribute(java.lang.String name,
Namespace ns)
This returns the attribute for this element with the given name and within the given Namespace, or null if no such attribute exists. |
java.lang.String |
Element.getAttributeValue(java.lang.String name,
Namespace ns)
This returns the attribute value for the attribute with the given name and within the given Namespace, null if there is no such attribute, and the empty string if the attribute value is empty. |
java.lang.String |
Element.getAttributeValue(java.lang.String name,
Namespace ns,
java.lang.String def)
This returns the attribute value for the attribute with the given name and within the given Namespace, or the passed-in default if there is no such attribute. |
Element |
Element.getChild(java.lang.String name,
Namespace ns)
This returns the first child element within this element with the given local name and belonging to the given namespace. |
java.util.List |
Element.getChildren(java.lang.String name,
Namespace ns)
This returns a List of all the child elements
nested directly (one level deep) within this element with the given
local name and belonging to the given Namespace, returned as
Element objects. |
java.lang.String |
Element.getChildText(java.lang.String name,
Namespace ns)
Returns the textual content of the named child element, or null if there's no such child. |
java.lang.String |
Element.getChildTextNormalize(java.lang.String name,
Namespace ns)
Returns the normalized textual content of the named child element, or null if there's no such child. |
java.lang.String |
Element.getChildTextTrim(java.lang.String name,
Namespace ns)
Returns the trimmed textual content of the named child element, or null if there's no such child. |
boolean |
Element.removeAttribute(java.lang.String name,
Namespace ns)
This removes the attribute with the given name and within the given Namespace. |
boolean |
Element.removeChild(java.lang.String name,
Namespace ns)
This removes the first child element (one level deep) with the given local name and belonging to the given namespace. |
boolean |
Element.removeChildren(java.lang.String name,
Namespace ns)
This removes all child elements (one level deep) with the given local name and belonging to the given namespace. |
void |
Element.removeNamespaceDeclaration(Namespace additionalNamespace)
Removes an additional namespace declarations from this element. |
Element |
Element.setAttribute(java.lang.String name,
java.lang.String value,
Namespace ns)
This sets an attribute value for this element. |
Element |
Element.setNamespace(Namespace namespace)
Sets the element's Namespace . |
Attribute |
Attribute.setNamespace(Namespace namespace)
This sets this Attribute 's . |
Constructors in org.jdom with parameters of type Namespace | |
---|---|
Attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
This will create a new Attribute with the
specified (local) name, value, and type, and in the provided
. |
|
Attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
This will create a new Attribute with the
specified (local) name and value, and in the provided
. |
|
Element(java.lang.String name,
Namespace namespace)
Creates a new element with the supplied (local) name and namespace. |
Uses of Namespace in org.jdom.filter |
---|
Constructors in org.jdom.filter with parameters of type Namespace | |
---|---|
ElementFilter(Namespace namespace)
Select only the Elements with the supplied Namespace. |
|
ElementFilter(java.lang.String name,
Namespace namespace)
Select only the Elements with the supplied name and Namespace. |
Uses of Namespace in org.jdom.xpath |
---|
Methods in org.jdom.xpath with parameters of type Namespace | |
---|---|
abstract void |
XPath.addNamespace(Namespace namespace)
Adds a namespace definition to the list of namespaces known of this XPath expression. |
|
JDOM 1.1.3 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |