Exemplo n.º 1
0
 public void RemoveNode(TreeKernel child)
 {
 }
Exemplo n.º 2
0
 public void AddNode(TreeKernel child, int position)
 {
 }
Exemplo n.º 3
0
 public void AddNode(TreeKernel child)
 {
 }
Exemplo n.º 4
0
 /// <summary>
 /// Removes the first occurence of the node.
 /// </summary>
 /// <param name="child">The child.</param>
 public void RemoveNode(TreeKernel child)
 {
     children.Remove(child);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Adds the node to the specified index.
 /// </summary>
 /// <param name="child">The child node to be added.</param>
 /// <param name="position">The position to insert the node.</param>
 public void AddNode(TreeKernel child, int position)
 {
     children.Insert(position, child);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Adds the specified node.
 /// Nodes should not be added more than once
 /// </summary>
 /// <param name="child">The child to be added.</param>
 public void AddNode(TreeKernel child)
 {
     children.Add(child);
 }