Obtain the MethodReference for the method to which this method expression resolves. @param context The EL context for this evaluation @return This default implementation always returns null @throws NullPointerException If the supplied context is null @throws
(ELContext context)
| 93 | * @since EL 5.0 |
| 94 | */ |
| 95 | public MethodReference getMethodReference(ELContext context) { |
| 96 | // Expected to be over-ridden by implementation |
| 97 | context.notifyBeforeEvaluation(getExpressionString()); |
| 98 | context.notifyAfterEvaluation(getExpressionString()); |
| 99 | return null; |
| 100 | } |
| 101 | } |