Package org.proxy4j.core.javassist
Class JavassistMethodInvocation<T>
- java.lang.Object
-
- org.proxy4j.core.javassist.JavassistMethodInvocation<T>
-
- All Implemented Interfaces:
org.aopalliance.intercept.Invocation,org.aopalliance.intercept.Joinpoint,org.aopalliance.intercept.MethodInvocation
public abstract class JavassistMethodInvocation<T> extends Object implements org.aopalliance.intercept.MethodInvocation
Javassist implementation for a method invocation.- Author:
- Brennan Spies
-
-
Constructor Summary
Constructors Constructor Description JavassistMethodInvocation(T target, String methodName, Object... args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getArguments()MethodgetMethod()AccessibleObjectgetStaticPart()TgetThis()
-
-
-
Method Detail
-
getMethod
public Method getMethod()
- Specified by:
getMethodin interfaceorg.aopalliance.intercept.MethodInvocation
-
getArguments
public Object[] getArguments()
- Specified by:
getArgumentsin interfaceorg.aopalliance.intercept.Invocation
-
getThis
public T getThis()
- Specified by:
getThisin interfaceorg.aopalliance.intercept.Joinpoint
-
getStaticPart
public AccessibleObject getStaticPart()
- Specified by:
getStaticPartin interfaceorg.aopalliance.intercept.Joinpoint
-
-