Exemplo n.º 1
0
 public SimpleTreeNode(T Value)
 {
     this.Value = Value;
     Children   = new SimpleTreeNodeList <T>(this);
 }
Exemplo n.º 2
0
 public SimpleTreeNode()
 {
     Parent   = null;
     Children = new SimpleTreeNodeList <T>(this);
 }
Exemplo n.º 3
0
 public SimpleTreeNode(SimpleTreeNodeList <T> Children)
 {
     Parent          = null;
     this.Children   = Children;
     Children.Parent = this;
 }
Exemplo n.º 4
0
 public SimpleTreeNode(SimpleTreeNode <T> Parent, SimpleTreeNodeList <T> Children)
 {
     this.Parent     = Parent;
     this.Children   = Children;
     Children.Parent = this;
 }
Exemplo n.º 5
0
 public SimpleTreeNode(SimpleTreeNode <T> Parent)
 {
     this.Parent = Parent;
     Children    = new SimpleTreeNodeList <T>(this);
 }