Package org.codehaus.groovy.vmplugin.v7
Class Java7
java.lang.Object
org.codehaus.groovy.vmplugin.v5.Java5
org.codehaus.groovy.vmplugin.v6.Java6
org.codehaus.groovy.vmplugin.v7.Java7
- All Implemented Interfaces:
VMPlugin
- Direct Known Subclasses:
Java8
Java 7 based functions. Currently just a stub but you can
add your own methods to your own version and place it on the classpath
ahead of this one.
- Author:
- Jochen Theodorou
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetInvokeSpecialHandle(Method method, Object receiver) Returns a handle with bound receiver to invokeSpecial the given method.intGives the version the plguin is made forvoidinvokeHandle(Object handle, Object[] args) Invokes a handle produced by #getInvokeSpecialdHandleMethods inherited from class org.codehaus.groovy.vmplugin.v5.Java5
configureAnnotation, configureClassNode, getPluginDefaultGroovyMethods, getPluginStaticGroovyMethods, setAdditionalClassInformation
-
Constructor Details
-
Java7
public Java7()
-
-
Method Details
-
invalidateCallSites
public void invalidateCallSites()- Specified by:
invalidateCallSitesin interfaceVMPlugin- Overrides:
invalidateCallSitesin classJava5
-
getVersion
public int getVersion()Description copied from interface:VMPluginGives the version the plguin is made for- Specified by:
getVersionin interfaceVMPlugin- Overrides:
getVersionin classJava6- Returns:
- 5 for jdk5, 6 for jdk6, 7 for jdk7 or higher
-
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- Overrides:
getInvokeSpecialHandlein classJava5- Returns:
- null in case of jdk<7, otherwise a handle that takes the method call arguments for the invokespecial call
-
invokeHandle
Description copied from interface:VMPluginInvokes a handle produced by #getInvokeSpecialdHandle- Specified by:
invokeHandlein interfaceVMPlugin- Overrides:
invokeHandlein classJava5- Parameters:
handle- the handleargs- arguments for the method call, can be empty but not null- Returns:
- the result of the method call
- Throws:
Throwable
-