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 java.lang.Object implements VMPlugin
Deprecated.
java 5 based functions
- 
Constructor SummaryConstructors Constructor Description Java5()Deprecated.
- 
Method SummaryModifier and Type Method Description booleancheckAccessible(java.lang.Class<?> callerClass, java.lang.Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess)Deprecated.check whether the member can be accessed or notbooleancheckCanSetAccessible(java.lang.reflect.AccessibleObject accessibleObject, java.lang.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(java.lang.String name)Deprecated.protected voidfillParameterNames(java.lang.String[] names, java.lang.reflect.Member member)Deprecated.protected intgetElementCode(java.lang.annotation.ElementType value)Deprecated.java.lang.ObjectgetInvokeSpecialHandle(java.lang.reflect.Method m, java.lang.Object receiver)Deprecated.Returns a handle with bound receiver to invokeSpecial the given method.java.lang.Class[]getPluginDefaultGroovyMethods()Deprecated.java.lang.Class[]getPluginStaticGroovyMethods()Deprecated.intgetVersion()Deprecated.Gives the version the plugin is made forvoidinvalidateCallSites()Deprecated.java.lang.ObjectinvokeHandle(java.lang.Object handle, java.lang.Object[] args)Deprecated.Invokes a handle produced by #getInvokeSpecialdHandleprotected ParametermakeParameter(CompileUnit cu, java.lang.reflect.Type type, java.lang.Class cl, java.lang.annotation.Annotation[] annotations, java.lang.String name)Deprecated.protected Parameter[]processParameters(CompileUnit compileUnit, java.lang.reflect.Method m)Deprecated.voidsetAdditionalClassInformation(ClassNode cn)Deprecated.MetaMethodtransformMetaMethod(MetaClass metaClass, MetaMethod metaMethod)Deprecated.transform meta method.MetaMethodtransformMetaMethod(MetaClass metaClass, MetaMethod metaMethod, java.lang.Class<?> caller)Deprecated.transform meta methodbooleantrySetAccessible(java.lang.reflect.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, waitMethods inherited from interface org.codehaus.groovy.vmplugin.VMPlugingetDefaultImportClasses
- 
Constructor Details- 
Java5public Java5()Deprecated.
 
- 
- 
Method Details- 
setAdditionalClassInformationDeprecated.- Specified by:
- setAdditionalClassInformationin interface- VMPlugin
 
- 
configureTypeVariableDefinitionDeprecated.
- 
configureTypeVariableReferenceDeprecated.
- 
getPluginDefaultGroovyMethodspublic java.lang.Class[] getPluginDefaultGroovyMethods()Deprecated.- Specified by:
- getPluginDefaultGroovyMethodsin interface- VMPlugin
 
- 
getPluginStaticGroovyMethodspublic java.lang.Class[] getPluginStaticGroovyMethods()Deprecated.- Specified by:
- getPluginStaticGroovyMethodsin interface- VMPlugin
 
- 
configureAnnotationFromDefinition@Deprecated public void configureAnnotationFromDefinition(AnnotationNode definition, AnnotationNode root)Deprecated.
- 
configureAnnotationNodeFromDefinitionDeprecated.- Specified by:
- configureAnnotationNodeFromDefinitionin interface- VMPlugin
 
- 
configureAnnotationDeprecated.- Specified by:
- configureAnnotationin interface- VMPlugin
 
- 
getElementCodeprotected int getElementCode(java.lang.annotation.ElementType value)Deprecated.
- 
configureClassNodeDeprecated.- Specified by:
- configureClassNodein interface- VMPlugin
 
- 
processParameters@Deprecated protected Parameter[] processParameters(CompileUnit compileUnit, java.lang.reflect.Method m)Deprecated.
- 
makeParameter@Deprecated protected Parameter makeParameter(CompileUnit cu, java.lang.reflect.Type type, java.lang.Class cl, java.lang.annotation.Annotation[] annotations, java.lang.String name)Deprecated.
- 
fillParameterNamesprotected void fillParameterNames(java.lang.String[] names, java.lang.reflect.Member member)Deprecated.
- 
invalidateCallSitespublic void invalidateCallSites()Deprecated.- Specified by:
- invalidateCallSitesin interface- VMPlugin
 
- 
getInvokeSpecialHandlepublic java.lang.Object getInvokeSpecialHandle(java.lang.reflect.Method m, java.lang.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 java.lang.Object invokeHandle(java.lang.Object handle, java.lang.Object[] args) throws java.lang.ThrowableDeprecated.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:
- java.lang.Throwable
 
- 
checkCanSetAccessiblepublic boolean checkCanSetAccessible(java.lang.reflect.AccessibleObject accessibleObject, java.lang.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(java.lang.Class<?> callerClass, java.lang.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(java.lang.reflect.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, java.lang.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
 
- 
transformMetaMethodDeprecated.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
 
 
-