Package org.codehaus.groovy.vmplugin.v5
Class Java5
java.lang.Object
org.codehaus.groovy.vmplugin.v5.Java5
- All Implemented Interfaces:
VMPlugin
- Direct Known Subclasses:
Java6
java 5 based functions
- Author:
- Jochen Theodorou
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidconfigureClassNode(CompileUnit compileUnit, ClassNode classNode) getInvokeSpecialHandle(Method m, Object receiver) Returns a handle with bound receiver to invokeSpecial the given method.Class[]Class[]intGives the version the plguin is made forvoidinvokeHandle(Object handle, Object[] args) Invokes a handle produced by #getInvokeSpecialdHandlevoid
-
Constructor Details
-
Java5
public Java5()
-
-
Method Details
-
setAdditionalClassInformation
- Specified by:
setAdditionalClassInformationin interfaceVMPlugin
-
getPluginDefaultGroovyMethods
- Specified by:
getPluginDefaultGroovyMethodsin interfaceVMPlugin
-
getPluginStaticGroovyMethods
- Specified by:
getPluginStaticGroovyMethodsin interfaceVMPlugin
-
configureAnnotation
- Specified by:
configureAnnotationin interfaceVMPlugin
-
configureClassNode
- Specified by:
configureClassNodein interfaceVMPlugin
-
invalidateCallSites
public void invalidateCallSites()- Specified by:
invalidateCallSitesin interfaceVMPlugin
-
getInvokeSpecialHandle
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
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
-