Interface Invocation

All Known Implementing Classes:
DefaultProxyInvocation

public interface Invocation
The abstraction of an invocation of a method.
Since:
1.0
Author:
Lei Yang
  • Method Summary

    Modifier and Type Method Description
    java.util.List<?> args()
    Arguments of the invocation.
    java.lang.reflect.Method method()
    The method that is invoked.
    java.lang.Object target()
    The object on which the invocation is made.
  • Method Details

    • target

      java.lang.Object target()
      The object on which the invocation is made.
    • method

      java.lang.reflect.Method method()
      The method that is invoked.
    • args

      java.util.List<?> args()
      Arguments of the invocation.