Example usage for Java java.beans Expression fields, constructors, methods, implement or subclass
The text is from its open source code.
Expression(Object target, String methodName, Object[] arguments) Creates a new Expression object for the specified target object to invoke the method specified by the name and by the array of arguments. | |
Expression(Object value, Object target, String methodName, Object[] arguments) Creates a new Expression object with the specified value for the specified target object to invoke the method specified by the name and by the array of arguments. |
void | execute() If the invoked method completes normally, the value it returns is copied in the value property. |
Object | getValue() If the value property of this instance is not already set, this method dynamically finds the method with the specified methodName on this target with these arguments and calls it. |