@Documented @Retention(value=RUNTIME) @Target(value=PARAMETER) public static @interface Advice.Local
Advice.OnMethodEnter
and Advice.OnMethodExit
annotation and are uniquely identified by
their name. However, if a local variable is referenced from an exit advice method, it must also be declared by an enter advice method.
It is possible to annotate multiple parameters of an advice method with local variables of the same name as long as all annotated parameters
share the same parameter type. All local variables are initialized with their default value which is 0
value for primitive types and
null
for reference types.public abstract String value
Copyright © 2014–2019. All rights reserved.