Returns whether a property has been resolved during the current evaluation step. ELResolver implementations call #setPropertyResolved(boolean) to indicate resolution, and the expression evaluator checks this flag to determine if resolution was successful. @return true if a property
()
| 93 | * @return {@code true} if a property has been resolved, {@code false} otherwise |
| 94 | */ |
| 95 | public boolean isPropertyResolved() { |
| 96 | return this.resolved; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Add an object to this EL context under the given key. |
no outgoing calls