Interface IMethodInvoker

  • All Known Implementing Classes:
    SInvocation.FallBackInvoker

    public interface IMethodInvoker
    Interface used to byte-engineer an accessor handler.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object invoke​(java.lang.Object object, java.lang.Object... args)
      Invokes a method on an object.
    • Method Detail

      • invoke

        java.lang.Object invoke​(java.lang.Object object,
                                java.lang.Object... args)
        Invokes a method on an object.
        Parameters:
        object - The object
        methodid - The ID of the method.
        args - The method arguments.
        Returns:
        The result, null if void.