(Object target, Object... args)
| 17 | } |
| 18 | |
| 19 | public XValue invoke(Object target, Object... args) throws InvocationTargetException { |
| 20 | try { |
| 21 | return new XValue(method.invoke(target, args)); |
| 22 | } catch (IllegalAccessException e) { |
| 23 | throw new IllegalStateException(e); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public Method method() { |
| 28 | return method; |