public class InvokerImplementInvocation extends Object implements MethodInvocation
| 构造器和说明 |
|---|
InvokerImplementInvocation(boolean isProxy,
Class<?> implType,
Method targetMethod,
Method proxyMethod,
DynamicConfig dynamicConfig,
Object targetObject,
Object[] methodParams) |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
public boolean isProxy()
isProxy 在接口中 MethodInvocationpublic Method getMethod()
MethodInvocationgetMethod 在接口中 MethodInvocationpublic Object[] getArguments()
MethodInvocationgetArguments 在接口中 MethodInvocationpublic Object proceed() throws Throwable
MethodInvocationThe implementation and the semantics of this method depends on the actual joinpoint type (see the children interfaces).
proceed 在接口中 MethodInvocationThrowable - if the joinpoint throws an exception.public Object getThis()
MethodInvocationFor instance, the target object for an invocation.
getThis 在接口中 MethodInvocation[Web Site]