Uses of Interface
org.jdom2.Parent
-
Packages that use Parent Package Description org.jdom2 Classes representing the components of an XML document.org.jdom2.located Extended JDOM Content Classes that contain location coordinates. -
-
Uses of Parent in org.jdom2
Classes in org.jdom2 that implement Parent Modifier and Type Class Description classDocumentAn XML document.classElementAn XML element.Fields in org.jdom2 declared as Parent Modifier and Type Field Description protected ParentContent. parentThe parentParentof this Content.Methods in org.jdom2 that return Parent Modifier and Type Method Description ParentParent. addContent(int index, java.util.Collection<? extends Content> c)Inserts the content in a collection into the content list at the given index.ParentParent. addContent(int index, Content child)Inserts the child into the content list at the given index.ParentParent. addContent(java.util.Collection<? extends Content> c)Appends all children in the given collection to the end of the content list.ParentParent. addContent(Content child)Appends the child to the end of the content list.ParentContent. getParent()Return this child's parent, or null if this child is currently not attached.ParentDocument. getParent()Always returns null, Document cannot have a parent.ParentParent. getParent()Return this parent's parent, or null if this parent is currently not attached to another parent.ParentElement. setContent(int index, java.util.Collection<? extends Content> newContent)Replace the child at the given index whith the supplied collection.Methods in org.jdom2 with parameters of type Parent Modifier and Type Method Description voidDefaultJDOMFactory. addContent(Parent parent, Content child)voidJDOMFactory. addContent(Parent parent, Content content)This will add the specified content to the specified parent instancevoidUncheckedJDOMFactory. addContent(Parent parent, Content child)protected CDATACDATA. setParent(Parent parent)protected CommentComment. setParent(Parent parent)protected ContentContent. setParent(Parent parent)Sets the parent of this Content.protected DocTypeDocType. setParent(Parent parent)protected EntityRefEntityRef. setParent(Parent parent)protected ProcessingInstructionProcessingInstruction. setParent(Parent parent)protected TextText. setParent(Parent parent) -
Uses of Parent in org.jdom2.located
Classes in org.jdom2.located that implement Parent Modifier and Type Class Description classLocatedElementThis Element specialization contains the location information as parsed.
-