MCPcopy Create free account
hub / github.com/apache/tomcat / notifyAfterEvaluation

Method notifyAfterEvaluation

java/jakarta/el/ELContext.java:246–259  ·  view source on GitHub ↗

Notify interested listeners that an expression has been evaluated. @param expression The expression that was evaluated @since EL 3.0

(String expression)

Source from the content-addressed store, hash-verified

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.

Callers 3

getValueReferenceMethod · 0.45
getMethodReferenceMethod · 0.45

Calls 2

handleThrowableMethod · 0.95
afterEvaluationMethod · 0.45

Tested by 1