Uses of Interface
de.pdark.decentxml.Parent
-
Packages that use Parent Package Description de.pdark.decentxml -
-
Uses of Parent in de.pdark.decentxml
Classes in de.pdark.decentxml that implement Parent Modifier and Type Class Description class
Document
This class represents an XML document.class
Element
An element in a XML document.class
NodeWithChildren
This class contains all the code necessary to implement nodes which can have child nodes (like Document or Element).Methods in de.pdark.decentxml that return Parent Modifier and Type Method Description Parent
Parent. addNode(int index, Node node)
Parent
Parent. addNode(Node node)
Parent
Parent. addNodes(int index, Node... nodes)
Parent
Parent. addNodes(int index, java.util.Collection<? extends Node> nodes)
Parent
Parent. addNodes(Node... nodes)
Parent
Parent. addNodes(java.util.Collection<? extends Node> nodes)
Parent
Parent. clearNodes()
Remove all nodesParent
Child. getParent()
The parent of this childParent
Element. getParent()
Methods in de.pdark.decentxml with parameters of type Parent Modifier and Type Method Description Child
Child. setParent(Parent parent)
Change the parent of this child.Element
Element. setParent(Parent parent)
Constructors in de.pdark.decentxml with parameters of type Parent Constructor Description Element(Parent parent, java.lang.String name)
Element(Parent parent, java.lang.String name, Namespace ns)
-