|
|||||||||||
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(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments)
Picks which method to invoke for the given object, method name and arguments |
protected MetaMethod |
MetaClass.pickStaticMethod(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments)
|
protected MetaMethod |
MetaClass.findMethod(java.lang.reflect.Method aMethod)
|
protected MetaMethod |
MetaClass.findGetter(java.lang.Object object,
java.lang.String name)
|
protected MetaMethod |
MetaClass.findStaticGetter(java.lang.Class type,
java.lang.String name)
|
protected MetaMethod |
MetaClass.createMetaMethod(java.lang.reflect.Method method)
|
MetaMethod |
MetaProperty.getGetter()
|
MetaMethod |
MetaProperty.getSetter()
|
Methods in groovy.lang with parameters of type MetaMethod | |
protected void |
MetaClass.addNewStaticInstanceMethod(MetaMethod method)
|
protected void |
MetaClass.addMethod(MetaMethod method)
|
protected boolean |
MetaClass.containsMatchingMethod(java.util.List list,
MetaMethod method)
|
protected java.lang.Object |
MetaClass.doMethodInvoke(java.lang.Object object,
MetaMethod method,
java.lang.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(java.lang.String name,
java.lang.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 |
NewStaticMetaMethod
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 |
ReflectionMetaMethod
|
class |
TransformMetaMethod
A MetaMethod implementation useful for implementing coercion based invocations |
Methods in org.codehaus.groovy.runtime with parameters of type MetaMethod | |
java.lang.Object |
Reflector.invoke(MetaMethod method,
java.lang.Object object,
java.lang.Object[] arguments)
|
protected java.lang.Object |
Reflector.noSuchMethod(MetaMethod method,
java.lang.Object object,
java.lang.Object[] arguments)
|
Constructors in org.codehaus.groovy.runtime with parameters of type MetaMethod | |
NewStaticMetaMethod(MetaMethod metaMethod)
|
|
TransformMetaMethod(MetaMethod metaMethod)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |