Пример #1
0
 public void RemoveNode(TreeKernel child)
 {
 }
Пример #2
0
 public void AddNode(TreeKernel child, int position)
 {
 }
Пример #3
0
 public void AddNode(TreeKernel child)
 {
 }
Пример #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);
 }
Пример #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);
 }
Пример #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);
 }