Class SimpleMethodInvocation

  • All Implemented Interfaces:
    org.aopalliance.intercept.Invocation, org.aopalliance.intercept.Joinpoint, org.aopalliance.intercept.MethodInvocation

    public class SimpleMethodInvocation
    extends java.lang.Object
    implements org.aopalliance.intercept.MethodInvocation
    Represents the AOP Alliance MethodInvocation.
    • Constructor Detail

      • SimpleMethodInvocation

        public SimpleMethodInvocation​(java.lang.Object targetObject,
                                      java.lang.reflect.Method method,
                                      java.lang.Object... arguments)
      • SimpleMethodInvocation

        public SimpleMethodInvocation()
    • Method Detail

      • getArguments

        public java.lang.Object[] getArguments()
        Specified by:
        getArguments in interface org.aopalliance.intercept.Invocation
      • getMethod

        public java.lang.reflect.Method getMethod()
        Specified by:
        getMethod in interface org.aopalliance.intercept.MethodInvocation
      • getStaticPart

        public java.lang.reflect.AccessibleObject getStaticPart()
        Specified by:
        getStaticPart in interface org.aopalliance.intercept.Joinpoint
      • getThis

        public java.lang.Object getThis()
        Specified by:
        getThis in interface org.aopalliance.intercept.Joinpoint
      • proceed

        public java.lang.Object proceed()
        Specified by:
        proceed in interface org.aopalliance.intercept.Joinpoint
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object