IsEmpty() public method

public IsEmpty ( ) : bool
return bool
Beispiel #1
0
 public System.Collections.IEnumerable GetChildren(TreePath treePath)
 {
     if (treePath.IsEmpty())
         return _list;
     else
         return null;
 }
Beispiel #2
0
 public Node FindNode(TreePath path)
 {
     if (path.IsEmpty())
         return _root;
     else
         return FindNode(_root, path, 0);
 }
Beispiel #3
0
 public System.Collections.IEnumerable GetChildren(TreePath treePath)
 {
     if (treePath.IsEmpty())
     {
         return(_list);
     }
     else
     {
         return(null);
     }
 }
Beispiel #4
0
 public Node FindNode(TreePath path)
 {
     if (path.IsEmpty())
     {
         return(_root);
     }
     else
     {
         return(FindNode(_root, path, 0));
     }
 }
Beispiel #5
0
 public TreeNodeAdv FindNode(TreePath path, bool readChilds)
 {
     if (path.IsEmpty())
     {
         return(_root);
     }
     else
     {
         return(FindNode(_root, path, 0, readChilds));
     }
 }
Beispiel #6
0
 public TreeNodeAdv FindNode(TreePath path, bool readChilds)
 {
     if (path.IsEmpty())
         return _root;
     else
         return FindNode(_root, path, 0, readChilds);
 }