Uses of Class org.jdom.Attribute

Uses in package org.jdom.output

Methods with parameter type org.jdom.Attribute

org.w3c.dom.Attr
This converts the JDOM Attribute parameter to a DOM Attr, returning the DOM version.
org.w3c.dom.Attr
DOMOutputter.output(Attribute attribute, org.w3c.dom.Document domDoc)

Uses in package org.jdom

Constructors with parameter type org.jdom.Attribute

This will create an Exception indicating that the addition of the Attribute to the Element is illegal.

Methods with parameter type org.jdom.Attribute

String
Check if Attribute's namespace collides with a Element's namespace.
String
Check if a Namespace collides with a Attribute's namespace.
boolean
This removes the supplied Attribute should it exist.
Element
This sets an attribute value for this element.

Methods with return type org.jdom.Attribute

Attribute
This detaches the Attribute from its parent, or does nothing if the Attribute has no parent.
Attribute
Element.getAttribute(String name)
This returns the attribute for this element with the given name and within no namespace, or null if no such attribute exists.
Attribute
Element.getAttribute(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.
Attribute
This will set the type of the Attribute.
Attribute
Attribute.setName(String name)
This sets the local name of the Attribute.
Attribute
This sets this Attribute's Namespace.
Attribute
This will set the parent of this Attribute.
Attribute
Attribute.setValue(String value)
This will set the value of the Attribute.

Uses in package org.jdom.input

Methods with return type org.jdom.Attribute

Attribute
DefaultJDOMFactory.attribute(String name, String value)
This will create a new Attribute with the specified (local) name and value, and does not place the attribute in a Namespace.
Attribute
JDOMFactory.attribute(String name, String value)
This will create a new Attribute with the specified (local) name and value, and does not place the attribute in a Namespace.
Attribute
DefaultJDOMFactory.attribute(String name, String value, int type)
This will create a new Attribute with the specified (local) name, value and type, and does not place the attribute in a Namespace.
Attribute
JDOMFactory.attribute(String name, String value, int type)
This will create a new Attribute with the specified (local) name, value and type, and does not place the attribute in a Namespace.
Attribute
DefaultJDOMFactory.attribute(String name, String value, int type, Namespace namespace)
This will create a new Attribute with the specified (local) name, value, and type, and in the provided Namespace.
Attribute
JDOMFactory.attribute(String name, String value, int type, Namespace namespace)
This will create a new Attribute with the specified (local) name, value, and type, and in the provided Namespace.
Attribute
DefaultJDOMFactory.attribute(String name, String value, Namespace namespace)
This will create a new Attribute with the specified (local) name and value, and in the provided Namespace.
Attribute
JDOMFactory.attribute(String name, String value, Namespace namespace)
This will create a new Attribute with the specified (local) name and value, and in the provided Namespace.

Copyright B) 2002 Jason Hunter, Brett McLaughlin. All Rights Reserved.