Package de.pdark.decentxml
Interface Child
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNodePath()
Return a path which uniquely describes this child.Parent
getParent()
The parent of this childvoid
remove()
Child
setParent(Parent parent)
Change the parent of this child.
-
-
-
Method Detail
-
getParent
Parent getParent()
The parent of this child
-
setParent
Child setParent(Parent parent)
Change the parent of this child.CAUTION: If the child is already attached to a parent, this call will not detach the old relation! You must call
child.getParent().removeNode (child)
, first!
-
getNodePath
String getNodePath()
Return a path which uniquely describes this child.
-
remove
void remove()
-
-