Esempio n. 1
0
 public TreeWalker(Node root, ENodeFilterMask whatToShow, NodeFilter Filter)
 {
     this.root       = root;
     this.whatToShow = whatToShow;
     currentNode     = root;
     this.Filter     = Filter;
 }
Esempio n. 2
0
 public NodeIterator(Node root, ENodeFilterMask whatToShow)
 {
     this.root           = root;
     this.referenceNode  = root;
     this.whatToShow     = whatToShow;
     this.iterCollection = Array.Empty <Node>();
 }
Esempio n. 3
0
 public TreeWalker(Node root, ENodeFilterMask whatToShow)
 {
     this.root       = root;
     this.whatToShow = whatToShow;
     currentNode     = root;
     Filter          = null;
 }
Esempio n. 4
0
 public NodeIterator(Node root, IList <Node> Collection, ENodeFilterMask whatToShow, NodeFilter Filter = null)
 {
     this.root           = root;
     this.referenceNode  = root;
     this.whatToShow     = whatToShow;
     this.iterCollection = Collection;
     this.Filter         = Filter;
 }