| java.lang.Object groovy.lang.MetaMethod org.codehaus.groovy.runtime.NewStaticMetaMethod
NewStaticMetaMethod | public class NewStaticMetaMethod extends MetaMethod (Code) | | A MetaMethod implementation where the underlying method is really a static
helper method on some class.
This implementation is used to add new static methods to the JDK writing them as normal
static methods with the first parameter being the class on which the method is added.
author: Guillaume Laforge version: $Revision: 4550 $ |
NewStaticMetaMethod | public NewStaticMetaMethod(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) | | |
|
|