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)
| 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. |
no test coverage detected