Example #1
0
 public bool ContainsChild(IMapDefinitonEntry entry)
 {
     foreach (IMapDefinitonEntry e in this.children)
         if (e == entry)
             return true;
     return false;
 }
Example #2
0
 public void add(IMapDefinitonEntry entry)
 {
     this.children.Add(entry);
 }