예제 #1
0
        public override void OnLoad()
        {
            cls = ClassDescriptor.lookup(Storage, className);
#if USE_GENERICS
            if (cls != typeof(T))
            {
                throw new StorageError(StorageError.ErrorCode.INCOMPATIBLE_VALUE_TYPE, cls);
            }
#endif
            locateFields();
        }
예제 #2
0
 public override void OnLoad()
 {
     cls = ClassDescriptor.lookup(Storage, className);
     lookupField(fieldName);
 }
예제 #3
0
 public override void OnLoad()
 {
     lookupConstructor(ClassDescriptor.lookup(Storage, blockClassName));
 }