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
 
 @Deprecated public class Java5 extends Object implements VMPlugin Deprecated.java 5 based functions
- 
- 
Constructor SummaryConstructors Constructor Description Java5()Deprecated.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleancheckAccessible(Class<?> callerClass, Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess)Deprecated.check whether the member can be accessed or notbooleancheckCanSetAccessible(AccessibleObject accessibleObject, Class<?> callerClass)Deprecated.The following scenarios can not set accessible, i.e.voidconfigureAnnotation(AnnotationNode node)Deprecated.voidconfigureAnnotationFromDefinition(AnnotationNode definition, AnnotationNode root)Deprecated.voidconfigureAnnotationNodeFromDefinition(AnnotationNode definition, AnnotationNode root)Deprecated.voidconfigureClassNode(CompileUnit compileUnit, ClassNode classNode)Deprecated.static GenericsTypeconfigureTypeVariableDefinition(ClassNode base, ClassNode[] cBounds)Deprecated.static ClassNodeconfigureTypeVariableReference(String name)Deprecated.protected intgetElementCode(ElementType value)Deprecated.ObjectgetInvokeSpecialHandle(Method m, Object receiver)Deprecated.Returns a handle with bound receiver to invokeSpecial the given method.Class[]getPluginDefaultGroovyMethods()Deprecated.Class[]getPluginStaticGroovyMethods()Deprecated.intgetVersion()Deprecated.Gives the version the plugin is made forvoidinvalidateCallSites()Deprecated.ObjectinvokeHandle(Object handle, Object[] args)Deprecated.Invokes a handle produced by #getInvokeSpecialdHandleprotected ParametermakeParameter(CompileUnit cu, Type type, Class cl, Annotation[] annotations, String name)Deprecated.protected Parameter[]processParameters(CompileUnit compileUnit, Method m)Deprecated.voidsetAdditionalClassInformation(ClassNode cn)Deprecated.MetaMethodtransformMetaMethod(MetaClass metaClass, MetaMethod metaMethod)Deprecated.transform meta method.MetaMethodtransformMetaMethod(MetaClass metaClass, MetaMethod metaMethod, Class<?> caller)Deprecated.transform meta methodbooleantrySetAccessible(AccessibleObject ao)Deprecated.Set theaccessibleflag for this reflected object totrueif possible.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.codehaus.groovy.vmplugin.VMPlugingetDefaultImportClasses
 
- 
 
- 
- 
- 
Method Detail- 
setAdditionalClassInformationpublic void setAdditionalClassInformation(ClassNode cn) Deprecated.- Specified by:
- setAdditionalClassInformationin interface- VMPlugin
 
 - 
configureTypeVariableDefinitionpublic static GenericsType configureTypeVariableDefinition(ClassNode base, ClassNode[] cBounds) Deprecated.
 - 
configureTypeVariableReferencepublic static ClassNode configureTypeVariableReference(String name) Deprecated.
 - 
getPluginDefaultGroovyMethodspublic Class[] getPluginDefaultGroovyMethods() Deprecated.- Specified by:
- getPluginDefaultGroovyMethodsin interface- VMPlugin
 
 - 
getPluginStaticGroovyMethodspublic Class[] getPluginStaticGroovyMethods() Deprecated.- Specified by:
- getPluginStaticGroovyMethodsin interface- VMPlugin
 
 - 
configureAnnotationFromDefinition@Deprecated public void configureAnnotationFromDefinition(AnnotationNode definition, AnnotationNode root) Deprecated.
 - 
configureAnnotationNodeFromDefinitionpublic void configureAnnotationNodeFromDefinition(AnnotationNode definition, AnnotationNode root) Deprecated.- Specified by:
- configureAnnotationNodeFromDefinitionin interface- VMPlugin
 
 - 
configureAnnotationpublic void configureAnnotation(AnnotationNode node) Deprecated.- Specified by:
- configureAnnotationin interface- VMPlugin
 
 - 
getElementCodeprotected int getElementCode(ElementType value) Deprecated.
 - 
configureClassNodepublic void configureClassNode(CompileUnit compileUnit, ClassNode classNode) Deprecated.- Specified by:
- configureClassNodein interface- VMPlugin
 
 - 
processParametersprotected Parameter[] processParameters(CompileUnit compileUnit, Method m) Deprecated.
 - 
makeParameterprotected Parameter makeParameter(CompileUnit cu, Type type, Class cl, Annotation[] annotations, String name) Deprecated.
 - 
invalidateCallSitespublic void invalidateCallSites() Deprecated.- Specified by:
- invalidateCallSitesin interface- VMPlugin
 
 - 
getInvokeSpecialHandlepublic Object getInvokeSpecialHandle(Method m, Object receiver) Deprecated.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 interface- VMPlugin
- Returns:
- null in case of jdk<7, otherwise a handle that takes the method call arguments for the invokespecial call
 
 - 
getVersionpublic int getVersion() Deprecated.Description copied from interface:VMPluginGives the version the plugin is made for- Specified by:
- getVersionin interface- VMPlugin
- Returns:
- 7 for jdk7, 8 for jdk8, 9 for jdk9 or higher
 
 - 
invokeHandlepublic Object invokeHandle(Object handle, Object[] args) throws Throwable Deprecated.Description copied from interface:VMPluginInvokes a handle produced by #getInvokeSpecialdHandle- Specified by:
- invokeHandlein interface- VMPlugin
- Parameters:
- handle- the handle
- args- arguments for the method call, can be empty but not null
- Returns:
- the result of the method call
- Throws:
- Throwable
 
 - 
checkCanSetAccessiblepublic boolean checkCanSetAccessible(AccessibleObject accessibleObject, Class<?> callerClass) Deprecated.The following scenarios can not set accessible, i.e. the return value is false 1) SecurityException occurred 2) the accessible object is a Constructor object for the Class class- Specified by:
- checkCanSetAccessiblein interface- VMPlugin
- Parameters:
- accessibleObject- the accessible object to check
- callerClass- the callerClass to invoke- setAccessible
- Returns:
- the check result
 
 - 
checkAccessiblepublic boolean checkAccessible(Class<?> callerClass, Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess) Deprecated.Description copied from interface:VMPlugincheck whether the member can be accessed or not- Specified by:
- checkAccessiblein interface- VMPlugin
- Parameters:
- callerClass- callerClass the callerClass to invoke- setAccessible
- declaringClass- the type of member owner
- memberModifiers- modifiers of member
- allowIllegalAccess- whether to allow illegal access
- Returns:
- the result of checking
 
 - 
trySetAccessiblepublic boolean trySetAccessible(AccessibleObject ao) Deprecated.Description copied from interface:VMPluginSet theaccessibleflag for this reflected object totrueif possible.- Specified by:
- trySetAccessiblein interface- VMPlugin
- Parameters:
- ao- the accessible object
- Returns:
- trueif the- accessibleflag is set to- true;- falseif access cannot be enabled.
 
 - 
transformMetaMethodpublic MetaMethod transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod, Class<?> caller) Deprecated.Description copied from interface:VMPlugintransform meta method- Specified by:
- transformMetaMethodin interface- VMPlugin
- Parameters:
- metaClass- meta class
- metaMethod- the original meta method
- caller- caller class, whose method sets accessible for methods
- Returns:
- the transformed meta method
 
 - 
transformMetaMethodpublic MetaMethod transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod) Deprecated.Description copied from interface:VMPlugintransform meta method.- Specified by:
- transformMetaMethodin interface- VMPlugin
- Parameters:
- metaClass- meta class
- metaMethod- the original meta method
- Returns:
- the transformed meta method
 
 
- 
 
-