예제 #1
0
 public void AddRemoveon(MethodRef method_ref)
 {
     removeon = method_ref;
 }
예제 #2
0
 public void AddAddon(MethodRef method_ref)
 {
     addon = method_ref;
 }
예제 #3
0
 public void AddFire(MethodRef method_ref)
 {
     fire = method_ref;
 }
예제 #4
0
파일: PropertyDef.cs 프로젝트: nobled/mono
 public void AddSet (MethodRef _set)
 {
         this._set = _set;
 }
예제 #5
0
파일: PropertyDef.cs 프로젝트: nobled/mono
                public void AddOther (MethodRef other)
                {
			if (other_list == null)
				other_list = new ArrayList ();
                        other_list.Add (other);
                }
 public void AddSet(MethodRef _set)
 {
     this._set = _set;
 }
예제 #7
0
파일: PropertyDef.cs 프로젝트: nobled/mono
 public void AddGet (MethodRef _get)
 {
         this._get = _get;
 }
 public void AddGet(MethodRef _get)
 {
     this._get = _get;
 }
예제 #9
0
파일: EventDef.cs 프로젝트: nobled/mono
 public void AddRemoveon (MethodRef method_ref)
 {
         removeon = method_ref;
 }
예제 #10
0
파일: EventDef.cs 프로젝트: nobled/mono
                public void AddOther (MethodRef method_ref)
                {
			if (other_list == null)
				other_list = new ArrayList ();
                        other_list.Add (method_ref);
                }
예제 #11
0
파일: EventDef.cs 프로젝트: nobled/mono
 public void AddFire (MethodRef method_ref)
 {
         fire = method_ref;
 }
예제 #12
0
파일: EventDef.cs 프로젝트: nobled/mono
 public void AddAddon (MethodRef method_ref)
 {
         addon = method_ref;
 }