Package | Description |
---|---|
es.gob.afirma.core.util.tree |
Clases para el tratamiento de árboles de forma independiente de Swing.
|
Modifier and Type | Method and Description |
---|---|
AOTreeNode |
AOTreeNode.getChildAt(int index)
Returns the child at the specified index in this node's child array.
|
AOTreeNode |
AOTreeNode.getParent()
Returns this node's parent or null if this node has no parent.
|
Modifier and Type | Method and Description |
---|---|
void |
AOTreeNode.add(AOTreeNode newChild)
Removes
newChild from its parent and makes it a child of
this node by adding it to the end of this node's child array. |
void |
AOTreeNode.setParent(AOTreeNode newParent)
Sets this node's parent to
newParent but does not change the
parent's child array. |
Constructor and Description |
---|
AOTreeModel(AOTreeNode root)
Crea un árbol en el que cualquier nodo puede tener hijos.
|