Returns a reference to the resolved property for this expression. This default implementation always returns null. Subclasses should override this method to provide the resolved base object and property. @param context The EL context for this evaluation @return This default implementat
(ELContext context)
| 115 | * @since EL 2.2 |
| 116 | */ |
| 117 | public ValueReference getValueReference(ELContext context) { |
| 118 | // Expected to be over-ridden by implementation |
| 119 | context.notifyBeforeEvaluation(getExpressionString()); |
| 120 | context.notifyAfterEvaluation(getExpressionString()); |
| 121 | return null; |
| 122 | } |
| 123 | } |