예제 #1
0
 public EventDef(FeatureAttr attr, BaseTypeRef type, string name)
 {
     this.attr   = attr;
     this.name   = name;
     this.type   = type;
     is_resolved = false;
 }
예제 #2
0
파일: EventDef.cs 프로젝트: nobled/mono
 public EventDef (FeatureAttr attr, BaseTypeRef type, string name)
 {
         this.attr = attr;
         this.name = name;
         this.type = type;
         is_resolved = false;
 }
예제 #3
0
파일: PropertyDef.cs 프로젝트: nobled/mono
 public PropertyDef (FeatureAttr attr, BaseTypeRef type, string name, ArrayList arg_list)
 {
         this.attr = attr;
         this.name = name;
         this.type = type;
         this.arg_list = arg_list;
         is_resolved = false;
 }
 public PropertyDef(FeatureAttr attr, BaseTypeRef type, string name, ArrayList arg_list)
 {
     this.attr     = attr;
     this.name     = name;
     this.type     = type;
     this.arg_list = arg_list;
     is_resolved   = false;
 }