Lines Matching defs:methodName
58 * The {@code target} and the {@code methodName} values should not be {@code null}.
65 * @param methodName the name of the method to invoke on the specified target
70 @ConstructorProperties({"target", "methodName", "arguments"})
71 public Expression(Object target, String methodName, Object[] arguments) {
72 super(target, methodName, arguments);
83 * The {@code target} and the {@code methodName} values should not be {@code null}.
91 * @param methodName the name of the method to invoke on the specified target
96 public Expression(Object value, Object target, String methodName, Object[] arguments) {
97 this(target, methodName, arguments);
110 * {@code methodName} property is {@code null}
127 * methodName on this target with these arguments and calls it.