Notify interested listeners that an expression has been evaluated. @param expression The expression that was evaluated @since EL 3.0
(String expression)
| 244 | * @since EL 3.0 |
| 245 | */ |
| 246 | public void notifyAfterEvaluation(String expression) { |
| 247 | if (listeners == null) { |
| 248 | return; |
| 249 | } |
| 250 | |
| 251 | for (EvaluationListener listener : listeners) { |
| 252 | try { |
| 253 | listener.afterEvaluation(this, expression); |
| 254 | } catch (Throwable t) { |
| 255 | Util.handleThrowable(t); |
| 256 | // Ignore - no option to log |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Notify interested listeners that a property has been resolved. |