org.springframework.binding.method |
Method binding support for invoking abritrary methods on target beans.
|
Java Source File Name | Type | Comment |
InvalidMethodKeyException.java | Class | Thrown when a method key could not be resolved to an invokable java Method on
a Class. |
MethodInvocationException.java | Class | Base class for exceptions that report a method invocation failure. |
MethodInvoker.java | Class | A helper for invoking typed methods on abritrary objects, with support for
argument value type conversion from values retrieved from a argument
attribute source. |
MethodKey.java | Class | A helper for resolving and caching a Java method by reflection. |
MethodSignature.java | Class | A specification for a method consisting of the methodName and an optional set
of named arguments. |
Parameter.java | Class | A named method parameter. |
Parameters.java | Class | An ordered list of method parameters. |
TextToMethodSignature.java | Class | Converter that takes an encoded string representation and produces a
corresponding MethodSignature object.
This converter supports the following encoded forms:
- "methodName" - the name of the method to invoke, where the method is
expected to have no arguments.
|