|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Attribute | |
org.jdom | |
org.jdom.input | |
org.jdom.output |
Uses of Attribute in org.jdom |
Methods in org.jdom that return Attribute | |
protected Attribute |
Attribute.setParent(Element parent)
This will set the parent of this Comment . |
Attribute |
Attribute.detach()
This detaches the Attribute from its parent, or does
nothing if the Attribute has no parent. |
Attribute |
Attribute.setName(String name)
This sets the local name of the Attribute . |
Attribute |
Attribute.setNamespace(Namespace namespace)
This sets this Attribute 's . |
Attribute |
Attribute.setValue(String value)
This will set the value of the Attribute . |
Attribute |
Element.getAttribute(String name)
This returns the attribute for this element with the given name and within no namespace. |
Attribute |
Element.getAttribute(String name,
Namespace ns)
This returns the attribute for this element with the given name and within the given Namespace. |
Methods in org.jdom with parameters of type Attribute | |
Element |
Element.setAttribute(Attribute attribute)
This sets an attribute value for this element. |
Element |
Element.addAttribute(Attribute attribute)
Deprecated. Deprecated in beta7, use setAttribute(Attribute) instead |
Constructors in org.jdom with parameters of type Attribute | |
IllegalAddException.IllegalAddException(Element base,
Attribute added,
String reason)
This will create an Exception indicating
that the addition of the
supplied to the supplied
is illegal. |
Uses of Attribute in org.jdom.input |
Methods in org.jdom.input that return Attribute | |
Attribute |
DefaultJDOMFactory.attribute(String name,
String value,
Namespace namespace)
|
Attribute |
DefaultJDOMFactory.attribute(String name,
String value)
|
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
. |
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 . |
Uses of Attribute in org.jdom.output |
Methods in org.jdom.output with parameters of type Attribute | |
Attr |
DOMOutputter.output(Attribute attribute)
This converts the JDOM Attribute parameter to a
DOM Attr , returning the DOM version. |
protected Attr |
DOMOutputter.output(Attribute attribute,
Document domDoc)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |