Package org.codehaus.groovy.vmplugin.v5
Class Java5
- java.lang.Object
-
- org.codehaus.groovy.vmplugin.v5.Java5
-
-
Constructor Summary
Constructors Constructor Description Java5()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigureAnnotation(AnnotationNode node)voidconfigureClassNode(CompileUnit compileUnit, ClassNode classNode)ObjectgetInvokeSpecialHandle(Method m, Object receiver)Returns a handle with bound receiver to invokeSpecial the given method.Class[]getPluginDefaultGroovyMethods()Class[]getPluginStaticGroovyMethods()intgetVersion()Gives the version the plguin is made forvoidinvalidateCallSites()ObjectinvokeHandle(Object handle, Object[] args)Invokes a handle produced by #getInvokeSpecialdHandlevoidsetAdditionalClassInformation(ClassNode cn)
-
-
-
Method Detail
-
setAdditionalClassInformation
public void setAdditionalClassInformation(ClassNode cn)
- Specified by:
setAdditionalClassInformationin interfaceVMPlugin
-
getPluginDefaultGroovyMethods
public Class[] getPluginDefaultGroovyMethods()
- Specified by:
getPluginDefaultGroovyMethodsin interfaceVMPlugin
-
getPluginStaticGroovyMethods
public Class[] getPluginStaticGroovyMethods()
- Specified by:
getPluginStaticGroovyMethodsin interfaceVMPlugin
-
configureAnnotation
public void configureAnnotation(AnnotationNode node)
- Specified by:
configureAnnotationin interfaceVMPlugin
-
configureClassNode
public void configureClassNode(CompileUnit compileUnit, ClassNode classNode)
- Specified by:
configureClassNodein interfaceVMPlugin
-
invalidateCallSites
public void invalidateCallSites()
- Specified by:
invalidateCallSitesin interfaceVMPlugin
-
getInvokeSpecialHandle
public Object getInvokeSpecialHandle(Method m, Object receiver)
Description copied from interface:VMPluginReturns a handle with bound receiver to invokeSpecial the given method. This method will require at least Java 7, but since the source has to compile on older Java versions as well it is not marked to return a MethodHandle and uses Object instead- Specified by:
getInvokeSpecialHandlein interfaceVMPlugin- Returns:
- null in case of jdk<7, otherwise a handle that takes the method call arguments for the invokespecial call
-
getVersion
public int getVersion()
Description copied from interface:VMPluginGives the version the plguin is made for- Specified by:
getVersionin interfaceVMPlugin- Returns:
- 5 for jdk5, 6 for jdk6, 7 for jdk7 or higher
-
invokeHandle
public Object invokeHandle(Object handle, Object[] args) throws Throwable
Description copied from interface:VMPluginInvokes a handle produced by #getInvokeSpecialdHandle- Specified by:
invokeHandlein interfaceVMPlugin- Parameters:
handle- the handleargs- arguments for the method call, can be empty but not null- Returns:
- the result of the method call
- Throws:
Throwable
-
-