public interface MethodInvocation
A method invocation is a joinpoint and can be intercepted by a method interceptor. copy from org.aopalliance.intercept.MethodInvocation,and its extends types
MethodInterceptor| 限定符和类型 | 方法和说明 |
|---|---|
Object[] |
getArguments()
Get the arguments as an array object.
|
Method |
getMethod()
Gets the method being called.
|
Object |
getThis()
Returns the object that holds the current join point's static part.
|
boolean |
isProxy() |
Object |
proceed()
Proceeds to the next interceptor in the chain.
|
boolean isProxy()
Method getMethod()
Object[] getArguments()
Object proceed() throws Throwable
The implementation and the semantics of this method depends on the actual joinpoint type (see the children interfaces).
Throwable - if the joinpoint throws an exception.Object getThis()
For instance, the target object for an invocation.
[Web Site]