Class NewInstanceMetaMethod
- java.lang.Object
- 
- org.codehaus.groovy.reflection.ParameterTypes
- 
- groovy.lang.MetaMethod
- 
- org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
- 
- org.codehaus.groovy.runtime.metaclass.NewMetaMethod
- 
- org.codehaus.groovy.runtime.metaclass.NewInstanceMetaMethod
 
 
 
 
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable
 - Direct Known Subclasses:
- GroovyCategorySupport.CategoryMethod
 
 public class NewInstanceMetaMethod extends NewMetaMethod 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.
- 
- 
Field Summary- 
Fields inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethodbytecodeParameterTypes, EMPTY_TYPE_ARRAY
 - 
Fields inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethodmethod
 - 
Fields inherited from class groovy.lang.MetaMethodEMPTY_ARRAY
 - 
Fields inherited from class org.codehaus.groovy.reflection.ParameterTypesisVargsMethod, nativeParamTypes, parameterTypes
 
- 
 - 
Constructor SummaryConstructors Constructor Description NewInstanceMetaMethod(CachedMethod method)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetModifiers()Returns the modifiers for this methodjava.lang.Objectinvoke(java.lang.Object object, java.lang.Object[] arguments)Invoke this methodbooleanisStatic()Returns whether or not this method is static.- 
Methods inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethodgetBytecodeParameterTypes, getDeclaringClass, getOwnerClass
 - 
Methods inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethodgetCachedMethod, getName, getPT, getReturnType, toString
 - 
Methods inherited from class groovy.lang.MetaMethodcheckParameters, clone, doMethodInvoke, equal, equal, getDescriptor, getMopName, getSignature, isAbstract, isCacheable, isMethod, isPrivate, isProtected, isPublic, isSame, processDoMethodInvokeException
 - 
Methods inherited from class org.codehaus.groovy.reflection.ParameterTypescoerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypes
 
- 
 
- 
- 
- 
Constructor Detail- 
NewInstanceMetaMethodpublic NewInstanceMetaMethod(CachedMethod method) 
 
- 
 - 
Method Detail- 
isStaticpublic boolean isStatic() Description copied from class:MetaMethodReturns whether or not this method is static.- Overrides:
- isStaticin class- MetaMethod
- Returns:
- true if this method is static
 
 - 
getModifierspublic int getModifiers() Description copied from class:MetaMethodReturns the modifiers for this method- Overrides:
- getModifiersin class- ReflectionMetaMethod
- Returns:
- modifiers as an int.
 
 - 
invokepublic java.lang.Object invoke(java.lang.Object object, java.lang.Object[] arguments)Description copied from class:MetaMethodInvoke this method- Overrides:
- invokein class- ReflectionMetaMethod
- Parameters:
- object- The object this method should be invoked on
- arguments- The arguments for the method if applicable
- Returns:
- The return value of the invocation
 
 
- 
 
-