org.aopalliance.intercept
Interface Invocation
- Joinpoint
- ConstructorInvocation, MethodInvocation
public interface Invocation
This interface represents an invocation in the program.
An invocation is a joinpoint and can be intercepted by an
interceptor.
Object[] | getArguments() - Get the arguments as an array object.
|
getArguments
public Object[] getArguments()
Get the arguments as an array object.
It is possible to change element values within this
array to change the arguments.
- the argument of the invocation