Uses of Class
groovy.lang.MetaMethod

Packages that use MetaMethod
groovy.inspect   
groovy.lang   
org.codehaus.groovy.ast.expr   
org.codehaus.groovy.classgen   
org.codehaus.groovy.runtime   
 

Uses of MetaMethod in groovy.inspect
 

Methods in groovy.inspect with parameters of type MetaMethod
protected  String[] Inspector.methodInfo(MetaMethod method)
           
 

Uses of MetaMethod in groovy.lang
 

Methods in groovy.lang that return MetaMethod
 MetaMethod MetaClassRegistry.getDefinedMethod(Class theClass, String methodName, Class[] args, boolean isStatic)
           
protected  MetaMethod MetaClass.retrieveMethod(Object owner, String methodName, Object[] arguments)
           
 MetaMethod MetaClass.retrieveMethod(String methodName, Class[] arguments)
           
 MetaMethod MetaClass.retrieveStaticMethod(String methodName, Class[] arguments)
           
protected  MetaMethod MetaClass.pickMethod(Object object, String methodName, Object[] arguments)
          Picks which method to invoke for the given object, method name and arguments
protected  MetaMethod MetaClass.pickMethod(String methodName, Class[] arguments)
          pick a method in a strict manner, i.e., without reinterpreting the first List argument.
protected  MetaMethod MetaClass.pickStaticMethod(Object object, String methodName, Object[] arguments)
           
protected  MetaMethod MetaClass.pickStaticMethod(String methodName, Class[] arguments)
           
protected  MetaMethod MetaClass.findMethod(Method aMethod)
           
protected  MetaMethod MetaClass.findGetter(Object object, String name)
           
protected  MetaMethod MetaClass.findStaticGetter(Class type, String name)
           
protected  MetaMethod MetaClass.createMetaMethod(Method method)
           
 MetaMethod MetaBeanProperty.getGetter()
           
 MetaMethod MetaBeanProperty.getSetter()
           
 

Methods in groovy.lang with parameters of type MetaMethod
 boolean MetaMethod.isSame(MetaMethod method)
           
protected  void MetaClass.addNewInstanceMethod(MetaMethod method)
           
protected  void MetaClass.addNewStaticMethod(MetaMethod method)
           
protected  void MetaClass.addMethod(MetaMethod method, boolean forceOverwrite)
           
protected  boolean MetaClass.containsMatchingMethod(List list, MetaMethod method)
           
protected  void MetaClass.removeMatchingMethod(List list, MetaMethod method)
          remove a method of the same matching prototype was found in the list
protected  Object MetaClass.doMethodInvoke(Object object, MetaMethod method, Object[] argumentArray)
           
protected  boolean MetaClass.isGenericSetMethod(MetaMethod method)
           
protected  boolean MetaClass.isGenericGetMethod(MetaMethod method)
           
protected  boolean MetaClass.isValidReflectorMethod(MetaMethod method)
           
 

Constructors in groovy.lang with parameters of type MetaMethod
MetaMethod(MetaMethod metaMethod)
           
MetaBeanProperty(String name, Class type, MetaMethod getter, MetaMethod setter)
           
 

Uses of MetaMethod in org.codehaus.groovy.ast.expr
 

Methods in org.codehaus.groovy.ast.expr that return MetaMethod
 MetaMethod StaticMethodCallExpression.getMetaMethod()
           
 MetaMethod MethodCallExpression.getMetaMethod()
           
 

Methods in org.codehaus.groovy.ast.expr with parameters of type MetaMethod
 void StaticMethodCallExpression.setMetaMethod(MetaMethod metaMethod)
           
 void MethodCallExpression.setMethod(MetaMethod mmeth)
           
 

Uses of MetaMethod in org.codehaus.groovy.classgen
 

Methods in org.codehaus.groovy.classgen that return MetaMethod
 MetaMethod AsmClassGenerator.resolve(StaticMethodCallExpression staticCall)
           
 

Methods in org.codehaus.groovy.classgen with parameters of type MetaMethod
protected  void ReflectorGenerator.invokeMethod(MetaMethod method)
           
protected  void ReflectorGenerator.loadParameters(MetaMethod method, int argumentIndex)
           
static String BytecodeHelper.getMethodDescriptor(MetaMethod metamethod)
           
 

Uses of MetaMethod in org.codehaus.groovy.runtime
 

Subclasses of MetaMethod in org.codehaus.groovy.runtime
 class NewInstanceMetaMethod
          A MetaMethod implementation where the underlying method is really a static helper method on some class but it appears to be an instance method on a class.
 class NewStaticMetaMethod
          A MetaMethod implementation where the underlying method is really a static helper method on some class.
 class ReflectionMetaMethod
           
 class TransformMetaMethod
          A MetaMethod implementation useful for implementing coercion based invocations
 

Methods in org.codehaus.groovy.runtime with parameters of type MetaMethod
 Object Reflector.invoke(MetaMethod method, Object object, Object[] arguments)
           
protected  Object Reflector.noSuchMethod(MetaMethod method, Object object, Object[] arguments)
           
 

Constructors in org.codehaus.groovy.runtime with parameters of type MetaMethod
TransformMetaMethod(MetaMethod metaMethod)
           
NewStaticMetaMethod(MetaMethod metaMethod)
           
NewInstanceMetaMethod(MetaMethod metaMethod)
           
 



Copyright © 2003-2005 The Codehaus. All Rights Reserved.