Package de.cardcontact.tlv
Interface MutableTreeNode
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinsert(TreeNode child, int index)Insert a tree node into a mutable tree node at given indexvoidremove(int index)Remove child from mutable tree nodevoidsetParent(MutableTreeNode parent)Set the parent for a mutable tree node- 
Methods inherited from interface de.cardcontact.tlv.TreeNode
getChildAt, getChildCount, getIndex, getParent, isLeaf 
 - 
 
 - 
 
- 
- 
Method Detail
- 
insert
void insert(TreeNode child, int index)
Insert a tree node into a mutable tree node at given index- Parameters:
 child- Child to insertindex- Index at which to insert the child
 
- 
remove
void remove(int index)
Remove child from mutable tree node- Parameters:
 index- Index of child to be removed
 
- 
setParent
void setParent(MutableTreeNode parent)
Set the parent for a mutable tree node- Parameters:
 parent-
 
 - 
 
 -