Exemple #1
0
        internal void OnMethodTypeCreated(MethodType methodType)
        {
            this.methodTypes.Add(methodType);
            this.metaObjectById.Add(methodType.Id, methodType);

            this.Stale();
        }
Exemple #2
0
 public MethodInvocation(Class @class, MethodType methodType)
 {
     this.concreteMethodType = @class.ConcreteMethodTypeByMethodType[methodType];
 }
Exemple #3
0
 public ConcreteMethodType(Class @class, MethodType methodType)
 {
     this.@class = @class;
     this.methodType = methodType;
 }
Exemple #4
0
 public MethodInvocation(Class @class, MethodType methodType)
 {
     this.concreteMethodType = @class.ConcreteMethodTypeByMethodType[methodType];
 }
Exemple #5
0
 public bool CanExecute(MethodType methodType)
 {
     return this.IsPermitted(methodType, Operation.Execute);
 }
Exemple #6
0
 public ConcreteMethodType(Class @class, MethodType methodType)
 {
     this.@class     = @class;
     this.methodType = methodType;
 }