Class ScannedMethodInvocation
- java.lang.Object
-
- net.cofcool.chaos.server.core.aop.ScannedMethodInvocation
-
- All Implemented Interfaces:
org.aopalliance.intercept.Invocation,org.aopalliance.intercept.Joinpoint,org.aopalliance.intercept.MethodInvocation
public class ScannedMethodInvocation extends Object implements org.aopalliance.intercept.MethodInvocation
代理MethodInvocation, 不支持proceed()操作。- Author:
- CofCool
-
-
Constructor Summary
Constructors Constructor Description ScannedMethodInvocation(org.aopalliance.intercept.MethodInvocation invocation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getArguments()MethodgetMethod()AccessibleObjectgetStaticPart()ObjectgetThis()Objectproceed()
-
-
-
Method Detail
-
getMethod
public Method getMethod()
- Specified by:
getMethodin interfaceorg.aopalliance.intercept.MethodInvocation
-
getArguments
public Object[] getArguments()
- Specified by:
getArgumentsin interfaceorg.aopalliance.intercept.Invocation
-
proceed
public Object proceed() throws Throwable
- Specified by:
proceedin interfaceorg.aopalliance.intercept.Joinpoint- Throws:
Throwable
-
getThis
public Object getThis()
- Specified by:
getThisin interfaceorg.aopalliance.intercept.Joinpoint
-
getStaticPart
public AccessibleObject getStaticPart()
- Specified by:
getStaticPartin interfaceorg.aopalliance.intercept.Joinpoint
-
-