Sets the internal flag indicating whether a property has been resolved during the current evaluation step. This method is used by ELResolver implementations to signal that they have handled the current base/property combination. @param resolved true if a property has been resolved,
(boolean resolved)
| 69 | * @param resolved {@code true} if a property has been resolved, {@code false} otherwise |
| 70 | */ |
| 71 | public void setPropertyResolved(boolean resolved) { |
| 72 | this.resolved = resolved; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Mark the given property as resolved and notify any interested listeners. |