public override bool isParent(COOPType type)
 {
     return(isParent(type as COOPAbstract));
 }
Example #2
0
 public override bool isParent(COOPType type)
 {
     return(isParent(type as COOPInterface));
 }
 public Field(Modifiers modifiers, COOPType type, string name)
 {
     this.modifiers = modifiers;
     this.type      = type;
     this.name      = name;
 }
 public abstract bool isParent(COOPType type);