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

Method notifyPropertyResolved

java/jakarta/el/ELContext.java:269–282  ·  view source on GitHub ↗

Notify interested listeners that a property has been resolved. @param base The object on which the property was resolved @param property The property that was resolved @since EL 3.0

(Object base, Object property)

Source from the content-addressed store, hash-verified

267 * @since EL 3.0
268 */
269 public void notifyPropertyResolved(Object base, Object property) {
270 if (listeners == null) {
271 return;
272 }
273
274 for (EvaluationListener listener : listeners) {
275 try {
276 listener.propertyResolved(this, base, property);
277 } catch (Throwable t) {
278 Util.handleThrowable(t);
279 // Ignore - no option to log
280 }
281 }
282 }
283
284 /**
285 * Determine if the specified name is recognised as the name of a lambda argument.

Callers 1

setPropertyResolvedMethod · 0.95

Calls 2

handleThrowableMethod · 0.95
propertyResolvedMethod · 0.45

Tested by

no test coverage detected