Uses of Class
org.jdom.Element
-
Packages that use Element Package Description org.jdom Classes to represent the components of an XML document.org.jdom.input Classes to build JDOM documents from various sources.org.jdom.output Classes to output JDOM documents to various destinations.org.jdom.transform Classes to help with transformations, based on the JAXP TrAX classes. -
-
Uses of Element in org.jdom
Fields in org.jdom declared as Element Modifier and Type Field Description protected Element
Attribute. parent
Parent element, or null if noneMethods in org.jdom that return Element Modifier and Type Method Description Element
Element. addContent(int index, java.util.Collection newContent)
Inserts the content in a collection into the content list at the given index.Element
Element. addContent(int index, Content child)
Inserts the child into the content list at the given index.Element
Element. addContent(java.lang.String str)
This adds text content to this element.Element
Element. addContent(java.util.Collection newContent)
Appends all children in the given collection to the end of the content list.Element
Element. addContent(Content child)
Appends the child to the end of the element's content list.Element
Document. detachRootElement()
Detach the root
from this document.Element
Element
DefaultJDOMFactory. element(java.lang.String name)
Element
DefaultJDOMFactory. element(java.lang.String name, java.lang.String uri)
Element
DefaultJDOMFactory. element(java.lang.String name, java.lang.String prefix, java.lang.String uri)
Element
DefaultJDOMFactory. element(java.lang.String name, Namespace namespace)
Element
JDOMFactory. element(java.lang.String name)
This will create anElement
in no
.Namespace
Element
JDOMFactory. element(java.lang.String name, java.lang.String uri)
This will create a newElement
with the supplied (local) name, and specifies the URI of the
theNamespace
Element
should be in, resulting it being unprefixed (in the default namespace).Element
JDOMFactory. element(java.lang.String name, java.lang.String prefix, java.lang.String uri)
This will create a newElement
with the supplied (local) name, and specifies the prefix and URI of the
theNamespace
Element
should be in.Element
JDOMFactory. element(java.lang.String name, Namespace namespace)
This will create a newElement
with the supplied (local) name, and define the
to be used.Namespace
Element
UncheckedJDOMFactory. element(java.lang.String name)
Element
UncheckedJDOMFactory. element(java.lang.String name, java.lang.String uri)
Element
UncheckedJDOMFactory. element(java.lang.String name, java.lang.String prefix, java.lang.String uri)
Element
UncheckedJDOMFactory. element(java.lang.String name, Namespace namespace)
Element
Element. getChild(java.lang.String name)
This returns the first child element within this element with the given local name and belonging to no namespace.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.Element
Attribute. getParent()
This will return the parent of thisAttribute
.Element
Content. getParentElement()
A convenience method that returns any parent element for this element, or null if the element is unattached or is a root element.Element
Document. getRootElement()
This will return the rootElement
for thisDocument
Element
Element. setAttribute(java.lang.String name, java.lang.String value)
This sets an attribute value for 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. setAttribute(Attribute attribute)
This sets an attribute value for this element.Element
Element. setAttributes(java.util.Collection newAttributes)
This sets the attributes of the element.Element
Element. setAttributes(java.util.List newAttributes)
This sets the attributes of the element.Element
Element. setContent(int index, Content child)
Replace the current child the given index with the supplied child.Element
Element. setContent(java.util.Collection newContent)
This sets the content of the element.Element
Element. setContent(Content child)
Set this element's content to be the supplied child.Element
Element. setName(java.lang.String name)
Sets the (local) name of the element.Element
Element. setNamespace(Namespace namespace)
Sets the element'sNamespace
.Element
Element. setText(java.lang.String text)
Sets the content of the element to be the text given.Methods in org.jdom with parameters of type Element Modifier and Type Method Description void
DefaultJDOMFactory. addNamespaceDeclaration(Element parent, Namespace additional)
void
JDOMFactory. addNamespaceDeclaration(Element element, Namespace additional)
void
UncheckedJDOMFactory. addNamespaceDeclaration(Element parent, Namespace additional)
static java.lang.String
Verifier. checkNamespaceCollision(Attribute attribute, Element element)
static java.lang.String
Verifier. checkNamespaceCollision(Namespace namespace, Element element)
Document
DefaultJDOMFactory. document(Element rootElement)
Document
DefaultJDOMFactory. document(Element rootElement, DocType docType)
Document
DefaultJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
Document
JDOMFactory. document(Element rootElement)
Document
JDOMFactory. document(Element rootElement, DocType docType)
Document
JDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
Document
UncheckedJDOMFactory. document(Element rootElement)
Document
UncheckedJDOMFactory. document(Element rootElement, DocType docType)
Document
UncheckedJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
boolean
Element. isAncestor(Element element)
Determines if this element is the ancestor of another element.void
DefaultJDOMFactory. setAttribute(Element parent, Attribute a)
void
JDOMFactory. setAttribute(Element element, Attribute a)
void
UncheckedJDOMFactory. setAttribute(Element parent, Attribute a)
protected Attribute
Attribute. setParent(Element parent)
This will set the parent of thisAttribute
.Document
Document. setRootElement(Element rootElement)
This sets the root
for theElement
Document
.Constructors in org.jdom with parameters of type Element Constructor Description Document(Element rootElement)
Document(Element rootElement, DocType docType)
Document(Element rootElement, DocType docType, java.lang.String baseURI)
-
Uses of Element in org.jdom.input
Methods in org.jdom.input that return Element Modifier and Type Method Description Element
DOMBuilder. build(org.w3c.dom.Element domElement)
This will build a JDOM Element from an existing DOM ElementElement
SAXHandler. getCurrentElement()
Returns the being-parsed element.Methods in org.jdom.input with parameters of type Element Modifier and Type Method Description protected void
SAXHandler. pushElement(Element element)
Pushes an element onto the tree under construction. -
Uses of Element in org.jdom.output
Methods in org.jdom.output with parameters of type Element Modifier and Type Method Description void
SAXOutputter. output(Element node)
This will output a single JDOM element as a document, firing off the SAX events that have been registered.void
XMLOutputter. output(Element element, java.io.OutputStream out)
void
XMLOutputter. output(Element element, java.io.Writer out)
void
XMLOutputter. outputElementContent(Element element, java.io.OutputStream out)
This will handle printing out an
's content only, not including its tag, and attributes.Element
void
XMLOutputter. outputElementContent(Element element, java.io.Writer out)
This will handle printing out an
's content only, not including its tag, and attributes.Element
java.lang.String
XMLOutputter. outputString(Element element)
Return a string representing an element.protected void
XMLOutputter. printAttributes(java.io.Writer out, java.util.List attributes, Element parent, XMLOutputter.NamespaceStack namespaces)
This will handle printing of a
list.Attribute
protected void
XMLOutputter. printElement(java.io.Writer out, Element element, int level, XMLOutputter.NamespaceStack namespaces)
-
Uses of Element in org.jdom.transform
Constructors in org.jdom.transform with parameters of type Element Constructor Description JDOMSource(Element source)
Creates a JDOM TrAX source wrapping a JDOM element.
-