Class AbstractTypeRef

  • All Implemented Interfaces:
    IType, Serializable

    public abstract class AbstractTypeRef
    extends ITypeRef
    implements Serializable
    This is what the proxy methods look like.
    
    public ITypeLoader getTypeLoader() {
      _reload();
      IType itype;
      try {
        itype = (IType) _getType();
      } catch (ClassCastException classcastexception) {
        throw new RuntimeException((new StringBuilder("Type interface changed.  Expected gw.internal.gosu.parser.IGosuClassInternal for ")).append(_getTypeNameInternal()).toString(), classcastexception);
      }
      return (ITypeLoader) itype.getTypeLoader();
    }
    
    See Also:
    Serialized Form