Uses of Class
org.jdom.Content
-
Packages that use Content Package Description org.jdom Classes to represent the components of an XML document.org.jdom.output Classes to output JDOM documents to various destinations. -
-
Uses of Content in org.jdom
Subclasses of Content in org.jdom Modifier and Type Class Description classCDATAAn XML CDATA section.classCommentAn XML comment.classDocTypeAn XML DOCTYPE declaration.classElementAn XML element.classEntityRefAn XML entity reference.classProcessingInstructionAn XML processing instruction.classTextCharacter-based XML content.Methods in org.jdom that return Content Modifier and Type Method Description ContentContent. detach()Detaches this child from its parent or does nothing if the child has no parent.ContentDocument. getContent(int index)ContentElement. getContent(int index)ContentParent. getContent(int index)Returns the child at the given index.ContentDocument. removeContent(int index)ContentElement. removeContent(int index)ContentParent. removeContent(int index)Removes and returns the child at the given index, or returns null if there's no such child.protected ContentContent. setParent(Parent parent)Sets the parent of this Content.Methods in org.jdom with parameters of type Content Modifier and Type Method Description voidDefaultJDOMFactory. addContent(Parent parent, Content child)DocumentDocument. addContent(int index, Content child)Inserts the child into the content list at the given index.DocumentDocument. addContent(Content child)Appends the child to the end of the content list.ElementElement. addContent(int index, Content child)Inserts the child into the content list at the given index.ElementElement. addContent(Content child)Appends the child to the end of the element's content list.voidJDOMFactory. addContent(Parent parent, Content content)voidUncheckedJDOMFactory. addContent(Parent parent, Content child)intDocument. indexOf(Content child)intElement. indexOf(Content child)intParent. indexOf(Content child)Returns the index of the supplied child in the content list, or -1 if not a child of this parent.booleanDocument. removeContent(Content child)booleanElement. removeContent(Content child)booleanParent. removeContent(Content child)Removes a single child node from the content list.DocumentDocument. setContent(int index, Content child)DocumentDocument. setContent(Content child)Set this document's content to be the supplied child.ElementElement. setContent(int index, Content child)Replace the current child the given index with the supplied child.ElementElement. setContent(Content child)Set this element's content to be the supplied child. -
Uses of Content in org.jdom.output
Methods in org.jdom.output with parameters of type Content Modifier and Type Method Description voidSAXOutputter. outputFragment(Content node)This will output a single JDOM nodes as a fragment of an XML document, firing off the SAX events that have been registered.
-