Frames | No Frames |
Constructors with parameter type org.jdom.Element | |
This will create an Exception indicating
that the addition of the
| |
This will create an Exception indicating
that the addition of the
to parent is illegal. | |
This will create an Exception indicating
that the addition of the
to the is illegal. | |
Methods with parameter type org.jdom.Element | |
Element |
This adds element content to this element. |
String | |
String | |
boolean |
Determines if this element is the ancestor of another element. |
boolean |
This removes the specified Element . |
Attribute |
This will set the parent of this Attribute . |
CDATA | This will set the parent of the CDATA node to the
supplied . |
Comment |
This will set the parent of this Comment . |
Element |
This will set the parent of this Element . |
EntityRef |
This will set the parent of this Entity . |
ProcessingInstruction |
This will set the parent of this ProcessingInstruction . |
Text | This will set the parent of the Text node to the supplied
. |
Document |
This sets the root for the
Document . |
Methods with return type org.jdom.Element | |
Element | Element.addContent(String str)
This adds text content to this element. |
Element |
This adds a CDATA section as content to this element. |
Element |
This adds a comment as content to this element. |
Element |
This adds element content to this element. |
Element |
This adds entity content to this element. |
Element |
This adds a processing instruction as content to this element. |
Element |
This adds text content to this element. |
Element |
This detaches the element from its parent, or does nothing if the
element has no parent. |
Element |
Detach the root from this document. |
Element |
This returns the first child element within this element with the
given local name and belonging to no namespace. |
Element |
This returns the first child element within this element with the
given local name and belonging to the given namespace. |
Element |
This will return the parent of this Attribute . |
Element | This will return the parent of this CDATA node, which
is always a JDOM . |
Element |
This will return the parent of this Comment . |
Element |
This will return the parent of this Element . |
Element |
This will return the parent of this EntityRef . |
Element |
This will return the parent of this ProcessingInstruction . |
Element | This will return the parent of this Text node, which
is always a JDOM . |
Element |
This will return the root Element
for this Document
|
Element | Element.setAttribute(String name, String value)
This sets an attribute value for this element. |
Element |
This sets an attribute value for this element. |
Element |
This sets an attribute value for this element. |
Element | Element.setAttributes(List newAttributes)
This sets the attributes of the element. |
Element | Element.setChildren(List children)
This sets the content of the element the same as setContent(List) ,
except only Element objects are allowed in the supplied
list. |
Element | Element.setContent(List newContent)
This sets the content of the element. |
Element |
This sets the parent of this element
and makes it the root element. |
Element |
This sets the (local) name of the Element . |
Element |
This sets this Element 's . |
Element |
This will set the parent of this Element . |
Element |
This sets the content of the element to be the text given. |
Methods with parameter type org.jdom.Element | |
Document | |
Document | |
Document | |
Document |
Methods with return type org.jdom.Element | |
Element | DOMBuilder.build(org.w3c.dom.Element domElement)
This will build a JDOM Element from an existing DOM Element
|
Element | DefaultJDOMFactory.element(String name)
This will create an Element in no
. |
Element | JDOMFactory.element(String name)
This will create an Element in no
. |
Element | DefaultJDOMFactory.element(String name, String uri)
This will create a new Element with
the supplied (local) name, and specifies the URI
of the the Element
should be in, resulting it being unprefixed (in the default
namespace). |
Element | JDOMFactory.element(String name, String uri)
This will create a new Element with
the supplied (local) name, and specifies the URI
of the the Element
should be in, resulting it being unprefixed (in the default
namespace). |
Element | DefaultJDOMFactory.element(String name, String prefix, String uri)
This will create a new Element with
the supplied (local) name, and specifies the prefix and URI
of the the Element
should be in. |
Element | JDOMFactory.element(String name, String prefix, String uri)
This will create a new Element with
the supplied (local) name, and specifies the prefix and URI
of the the Element
should be in. |
Element |
This will create a new Element
with the supplied (local) name, and define
the to be used. |
Element |
This will create a new Element
with the supplied (local) name, and define
the to be used. |
Element |
Returns the being-parsed element. |
Methods with parameter type org.jdom.Element | |
org.w3c.dom.Element |
This converts the JDOM Element parameter to a
DOM Element, returning the DOM version. |
void | |
void | |
org.w3c.dom.Element | DOMOutputter.output(Element element, org.w3c.dom.Document domDoc, org.jdom.output.NamespaceStack namespaces) |
void | This will handle printing out an 's content only, not including its tag, and
attributes. |
void |
This will handle printing out an 's content only, not including its tag, and
attributes. |
String |
Return a string representing an element. |
void | XMLOutputter.printAttributes(List attributes, Element parent, Writer out, org.jdom.output.NamespaceStack namespaces)
This will handle printing of a list. |
void | XMLOutputter.printElement(Element element, Writer out, int level, org.jdom.output.NamespaceStack namespaces) |
void | XMLOutputter.printElementContent(Element element, Writer out, int level, org.jdom.output.NamespaceStack namespaces)
This will handle printing of a 's content only, not including it's tag,
attributes, or namespace info. |