Class RecordedInvocation

java.lang.Object
org.apache.commons.digester3.RecordedInvocation

final class RecordedInvocation extends Object
Detached representation of a method invocation. From Commons [proxy] v2 branch.
Since:
3.2
  • Field Details

    • invokedMethod

      private final Method invokedMethod
    • arguments

      private final Object[] arguments
  • Constructor Details

    • RecordedInvocation

      public RecordedInvocation(Method invokedMethod, Object[] arguments)
      Create a new RecordedInvocation instance.
      Parameters:
      invokedMethod -
      arguments -
  • Method Details

    • getInvokedMethod

      public Method getInvokedMethod()
      Get the invokedMethod.
      Returns:
      Method
    • getArguments

      public Object[] getArguments()
      Get the arguments.
      Returns:
      Object[]
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • convert

      protected void convert(StringBuilder buffer, Object input)
      Add a string representation of input to buffer.
      Parameters:
      buffer - the buffer to append the string representation of the input object.
      input - the input object has to be serialized to string.