示例#1
0
 public ZookeeperTreeNodeModel(string displayName, string queryPath, ZookeeperTreeNodeModel root, Stat stat)
     : this()
 {
     this.QueryPath   = queryPath;
     this.JoinPath    = queryPath == "/" ? string.Empty : queryPath;
     this.Root        = root;
     this.Stat        = stat;
     this.DisplayName = displayName;
 }
示例#2
0
 public ZookeeperTreeNodeModel(string displayName, string queryPath, ZookeeperTreeNodeModel root)
     : this(displayName, queryPath, root, null)
 {
 }