Package org.apache.commons.digester3
Class RecordedInvocation
java.lang.Object
org.apache.commons.digester3.RecordedInvocation
Detached representation of a method invocation.
From Commons [proxy] v2 branch.
- Since:
- 3.2
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRecordedInvocation
(Method invokedMethod, Object[] arguments) Create a new RecordedInvocation instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
convert
(StringBuilder buffer, Object input) Add a string representation ofinput
tobuffer
.Object[]
Get the arguments.Get the invokedMethod.toString()
-
Field Details
-
invokedMethod
-
arguments
-
-
Constructor Details
-
RecordedInvocation
Create a new RecordedInvocation instance.- Parameters:
invokedMethod
-arguments
-
-
-
Method Details
-
getInvokedMethod
Get the invokedMethod.- Returns:
- Method
-
getArguments
Get the arguments.- Returns:
- Object[]
-
toString
-
convert
Add a string representation ofinput
tobuffer
.- Parameters:
buffer
- the buffer to append the string representation of the input object.input
- the input object has to be serialized to string.
-