|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MetaMethod | |
groovy.lang | Core Groovy language classes for implementing data structures, closures, metadata and so forth. |
org.codehaus.groovy.classgen | Generates Java classes for Groovy classes using ASM. |
org.codehaus.groovy.runtime | Runtime classes for Groovy - whether the dynamic interpreter is being used, the compiler or the bytecode generator. |
Uses of MetaMethod in groovy.lang |
Methods in groovy.lang that return MetaMethod | |
protected MetaMethod |
Closure.getDoCallMethod()
|
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.pickStaticMethod(Object object,
String methodName,
Object[] 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 |
MetaProperty.getGetter()
|
MetaMethod |
MetaProperty.getSetter()
|
Methods in groovy.lang with parameters of type MetaMethod | |
protected void |
MetaClass.addNewInstanceMethod(MetaMethod method)
|
protected void |
MetaClass.addNewStaticMethod(MetaMethod method)
|
protected void |
MetaClass.addMethod(MetaMethod method)
|
protected boolean |
MetaClass.containsMatchingMethod(List list,
MetaMethod method)
|
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)
|
boolean |
MetaMethod.isSame(MetaMethod method)
|
Constructors in groovy.lang with parameters of type MetaMethod | |
MetaMethod(MetaMethod metaMethod)
|
|
MetaProperty(String name,
Class type,
MetaMethod getter,
MetaMethod setter)
|
Uses of MetaMethod in org.codehaus.groovy.classgen |
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)
|
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 | |
NewInstanceMetaMethod(MetaMethod metaMethod)
|
|
NewStaticMetaMethod(MetaMethod metaMethod)
|
|
TransformMetaMethod(MetaMethod metaMethod)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |