Package com.google.inject.internal
Class InterceptorStackCallback.InterceptedMethodInvocation
- java.lang.Object
-
- com.google.inject.internal.InterceptorStackCallback.InterceptedMethodInvocation
-
- All Implemented Interfaces:
org.aopalliance.intercept.Invocation,org.aopalliance.intercept.Joinpoint,org.aopalliance.intercept.MethodInvocation
- Enclosing class:
- InterceptorStackCallback
private class InterceptorStackCallback.InterceptedMethodInvocation extends java.lang.Object implements org.aopalliance.intercept.MethodInvocation
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.Object[]arguments(package private) intindex(package private) net.sf.cglib.proxy.MethodProxymethodProxy(package private) java.lang.Objectproxy
-
Constructor Summary
Constructors Constructor Description InterceptedMethodInvocation(java.lang.Object proxy, net.sf.cglib.proxy.MethodProxy methodProxy, java.lang.Object[] arguments, int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]getArguments()java.lang.reflect.MethodgetMethod()java.lang.reflect.AccessibleObjectgetStaticPart()java.lang.ObjectgetThis()java.lang.Objectproceed()
-
-
-
Method Detail
-
proceed
public java.lang.Object proceed() throws java.lang.Throwable- Specified by:
proceedin interfaceorg.aopalliance.intercept.Joinpoint- Throws:
java.lang.Throwable
-
getMethod
public java.lang.reflect.Method getMethod()
- Specified by:
getMethodin interfaceorg.aopalliance.intercept.MethodInvocation
-
getArguments
public java.lang.Object[] getArguments()
- Specified by:
getArgumentsin interfaceorg.aopalliance.intercept.Invocation
-
getThis
public java.lang.Object getThis()
- Specified by:
getThisin interfaceorg.aopalliance.intercept.Joinpoint
-
getStaticPart
public java.lang.reflect.AccessibleObject getStaticPart()
- Specified by:
getStaticPartin interfaceorg.aopalliance.intercept.Joinpoint
-
-