| java.lang.Object groovy.lang.MetaMethod org.codehaus.groovy.runtime.NewInstanceMetaMethod
NewInstanceMetaMethod | public class NewInstanceMetaMethod extends MetaMethod (Code) | | 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.
This implementation is used to add new methods to the JDK writing them as normal
static methods with the first parameter being the class on which the method is added.
author: James Strachan version: $Revision: 4550 $ |
NewInstanceMetaMethod | public NewInstanceMetaMethod(String name, Class declaringClass, Class[] parameterTypes, Class returnType, int modifiers)(Code) | | |
getBytecodeParameterTypes | public Class[] getBytecodeParameterTypes()(Code) | | |
getDeclaringClass | public Class getDeclaringClass()(Code) | | |
getModifiers | public int getModifiers()(Code) | | |
getParameterTypes | public Class[] getParameterTypes()(Code) | | |
isStatic | public boolean isStatic()(Code) | | |
|
|