add method
Add a child value
node to the children. The value
will be inserted
after the last child in the list
Implementation
void add(IndexedNode value) {
value.parent = this;
children.add(value);
}
Add a child value
node to the children. The value
will be inserted
after the last child in the list
void add(IndexedNode value) {
value.parent = this;
children.add(value);
}