Uses of Class org.jdom.Content

Uses in package org.jdom.output

Methods with parameter type org.jdom.Content

void
This will output a single JDOM nodes as a fragment of an XML document, firing off the SAX events that have been registered.

Uses in package org.jdom

Classes derived from org.jdom.Content

class
An XML CDATA section.
class
An XML comment.
class
An XML DOCTYPE declaration.
class
An XML element.
class
An XML entity reference.
class
An XML processing instruction.
class
Character-based XML content.

Methods with parameter type org.jdom.Content

Document
Document.addContent(int index, Content child)
Inserts the child 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.
Document
Appends the child to the end of the content list.
Element
Appends the child to the end of the element's content list.
void
void
void
int
Returns the index of the supplied child in the content list, or -1 if not a child of this parent.
int
Returns the index of the supplied child in the content list, or -1 if not a child of this parent.
int
Returns the index of the supplied child in the content list, or -1 if not a child of this parent.
boolean
Removes a single child node from the content list.
boolean
Removes a single child node from the content list.
boolean
Removes a single child node from the content list.
Document
Document.setContent(int index, Content child)
Element
Element.setContent(int index, Content child)
Replace the current child the given index with the supplied child.
Document
Set this document's content to be the supplied child.
Element
Set this element's content to be the supplied child.

Methods with return type org.jdom.Content

Content
Detaches this child from its parent or does nothing if the child has no parent.
Content
Document.getContent(int index)
Returns the child at the given index.
Content
Element.getContent(int index)
Returns the child at the given index.
Content
Parent.getContent(int index)
Returns the child at the given index.
Content
Removes and returns the child at the given index, or returns null if there's no such child.
Content
Removes and returns the child at the given index, or returns null if there's no such child.
Content
Parent.removeContent(int index)
Removes and returns the child at the given index, or returns null if there's no such child.
Content
Sets the parent of this Content.

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