Adds an ELResolver to the front of the resolver chain in the managed EL context. Resolvers added first have higher priority during property resolution. @param resolver the ELResolver to add
(ELResolver resolver)
| 92 | * @param resolver the ELResolver to add |
| 93 | */ |
| 94 | public void addELResolver(ELResolver resolver) { |
| 95 | getELContext().addELResolver(resolver); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Maps a static method to an EL function name with the given prefix and local name. |
nothing calls this directly
no test coverage detected