Package org.esa.snap.core.util
Class TreeNode<T>
- java.lang.Object
-
- org.esa.snap.core.util.TreeNode<T>
-
public class TreeNode<T> extends Object
A tree node implementation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(TreeNode<T> child)
TreeNode<T>
createChild(String path)
String
getAbsolutePath()
TreeNode<T>
getChild(String path)
TreeNode<T>[]
getChildren()
T
getContent()
String
getId()
TreeNode<T>
getParent()
TreeNode<T>
getRoot()
boolean
removeChild(TreeNode<T> child)
void
setContent(T content)
void
setParent(TreeNode<T> parent)
-