interface Invocation : Joinpoint
This interface represents an invocation in the program.
An invocation is a joinpoint and can be intercepted by an interceptor.
Author
Rod Johnson
abstract fun getArguments(): Array<Any>
Get the arguments as an array object. It is possible to change element values within this array to change the arguments. |
interface MethodInvocation : Invocation
Description of an invocation to a method, given to an interceptor upon method-call. A method invocation is a joinpoint and can be intercepted by a method interceptor. |