public interface VMPlugin
Interface to access VM version based actions. This interface is for internal use only!
| Type Params | Return Type | Name and description |
|---|---|---|
|
public boolean |
checkAccessible(Class<?> callerClass, Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess)check whether the member can be accessed or not |
|
public boolean |
checkCanSetAccessible(AccessibleObject accessibleObject, Class<?> callerClass)Check whether invoking AccessibleObject.setAccessible on the accessible object will be completed successfully |
|
public void |
configureAnnotation(AnnotationNode node)Copies runtime annotation metadata into the supplied annotation node. |
|
public void |
configureAnnotationNodeFromDefinition(AnnotationNode definition, AnnotationNode node)Copies values from an annotation definition onto another annotation node. |
|
public void |
configureClassNode(CompileUnit unit, ClassNode node)Configures the supplied class node from its runtime type information. |
|
public Map<String, Set<String>> |
getDefaultImportClasses(String[] packageNames)Returns the default import classes: class name -> the relevant package names |
|
public Object |
getInvokeSpecialHandle(Method m, Object receiver)Returns a handle with bound receiver to invokeSpecial the given method. |
|
public static String |
getJavaVersion()Returns java version, e.g. 1.8, 9, 11, 17 |
|
public Class[] |
getPluginDefaultGroovyMethods()Returns plugin-specific default Groovy methods. |
|
public Class[] |
getPluginStaticGroovyMethods()Returns plugin-specific static Groovy methods. |
|
public List<String> |
getRecordComponentNames(Class<?> maybeRecord)Returns the list of record component names or the empty list if the class is not a record or running on a pre16 JDK. |
|
public int |
getVersion()Gives the version the plugin is made for |
|
public void |
invalidateCallSites()Invalidates cached call sites maintained by the plugin. |
|
public Object |
invokeHandle(Object handle, Object[] args)Invokes a handle produced by #getInvokeSpecialdHandle |
|
public void |
setAdditionalClassInformation(ClassNode node)Adds VM-specific metadata to the given class node. |
|
public MetaMethod |
transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod, Class<?> caller)transform meta method |
|
public MetaMethod |
transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod)transform meta method. |
|
public boolean |
trySetAccessible(AccessibleObject ao)Set the accessible flag for this reflected object to true
if possible. |
check whether the member can be accessed or not
callerClass - callerClass the callerClass to invoke setAccessibledeclaringClass - the type of member ownermemberModifiers - modifiers of memberallowIllegalAccess - whether to allow illegal accessCheck whether invoking AccessibleObject.setAccessible on the accessible object will be completed successfully
accessibleObject - the accessible object to checkcallerClass - the callerClass to invoke setAccessibleCopies runtime annotation metadata into the supplied annotation node.
node - the annotation node to configureCopies values from an annotation definition onto another annotation node.
definition - the source annotation definitionnode - the annotation node to updateConfigures the supplied class node from its runtime type information.
unit - the compile unit that owns the class nodenode - the class node to configureReturns the default import classes: class name -> the relevant package names
packageNames - the default import package names, e.g. java.lang.Returns 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
Returns java version, e.g. 1.8, 9, 11, 17
Returns plugin-specific default Groovy methods.
Returns plugin-specific static Groovy methods.
Returns the list of record component names or the empty list if the class is not a record or running on a pre16 JDK.
maybeRecord - the class in questionGives the version the plugin is made for
Invalidates cached call sites maintained by the plugin.
Invokes a handle produced by #getInvokeSpecialdHandle
handle - the handleargs - arguments for the method call, can be empty but not nullAdds VM-specific metadata to the given class node.
node - the class node to enrichtransform meta method
metaClass - metaclassmetaMethod - the original meta methodcaller - caller class, whose method sets accessible for methodstransform meta method.
metaClass - metaclassmetaMethod - the original meta method Set the accessible flag for this reflected object to true
if possible.
ao - the accessible objecttrue if the accessible flag is set to true;
false if access cannot be enabled.