public PropertyTree(string localName) : base(localName)
 {
     this.children = new PropertyNodeLinkedList(this);
 }
 public PropertyTree(QualifiedName name) : base(name)
 {
     this.children = new PropertyNodeLinkedList(this);
 }