Package org.codehaus.groovy.reflection

Examples of org.codehaus.groovy.reflection.CachedMethod


    }
  }

  @Nullable
  public static Method toMethod(@Nullable MetaMethod metaMethod) {
    CachedMethod cachedMethod = ObjectUtil.asInstance(metaMethod, CachedMethod.class);
    return cachedMethod == null ? null : cachedMethod.getCachedMethod();
  }
View Full Code Here

TOP

Related Classes of org.codehaus.groovy.reflection.CachedMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.