Exemplo n.º 1
0
 public HeritachyType(HeritachyType parent, string name, IScop iscop)
 {
     this.name = name;
     Scop      = iscop;
     if (parent != null)
     {
         parent.Children = this;
     }
 }
Exemplo n.º 2
0
 public HeritachyType(string name, IScop iscop)
 {
     this.name = name;
     Scop      = iscop;
 }
Exemplo n.º 3
0
 public HeritachyType Add(string _name, IScop iScop)
 {
     return(new HeritachyType(this, _name, iScop));
 }