Interface MethodRequest

All Superinterfaces:
InstanceId, org.refcodes.mixin.InstanceIdAccessor, Session, SessionIdAccessor

public interface MethodRequest extends Session
The Interface MethodRequest.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.refcodes.mixin.InstanceIdAccessor

    org.refcodes.mixin.InstanceIdAccessor.InstanceIdBuilder<B extends org.refcodes.mixin.InstanceIdAccessor.InstanceIdBuilder<B>>, org.refcodes.mixin.InstanceIdAccessor.InstanceIdMutator, org.refcodes.mixin.InstanceIdAccessor.InstanceIdProperty
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the arguments to be passed to the method which in turn will be invoked on the target object.
    Class<?>[]
    Returns an array of Class objects that represent the formal parameter types, in declaration order, of the method represented by this Method object.
    Returns the name of the method represented by this method object, as a String.

    Methods inherited from interface org.refcodes.mixin.InstanceIdAccessor

    getInstanceId

    Methods inherited from interface org.refcodes.remoting.SessionIdAccessor

    getSessionId
  • Method Details

    • getMethodName

      String getMethodName()
      Returns the name of the method represented by this method object, as a String.
      Returns:
      The name of the method represented by this method object is returned
    • getArgumentTypeArray

      Class<?>[] getArgumentTypeArray()
      Returns an array of Class objects that represent the formal parameter types, in declaration order, of the method represented by this Method object.
      Returns:
      Description is currently not available!
    • getArgumentArray

      Object[] getArgumentArray()
      Returns the arguments to be passed to the method which in turn will be invoked on the target object.
      Returns:
      The Object array being the arguments to be passed to the method of the target.