public bool Remove(GenericTreeNodeEntry <T> item) { bool removed = false; removeNode(item.Name, ref removed); return(removed); }
public void Insert(int index, GenericTreeNodeEntry <T> item) { throw new System.NotImplementedException(); }
public int IndexOf(GenericTreeNodeEntry <T> item) { throw new System.NotImplementedException(); }
public bool Contains(GenericTreeNodeEntry <T> item) { return(getNode(item.Name) != null); }
public void Add(GenericTreeNodeEntry <T> item) { setNode(new BinaryTreeNode <T> (item.Name, item.RawEntry)); }