Uses of Class
javax.el.ELResolver

Packages that use ELResolver
com.sun.el.lang   
javax.beans.binding The classes in this package, and subpackages, provide a way to bind two properties of two objects together. 
javax.el Provides the API for the Unified Expression Language shared by the JSP 2.1 and JSF 1.2 technologies. 
 

Uses of ELResolver in com.sun.el.lang
 

Methods in com.sun.el.lang that return ELResolver
 ELResolver EvaluationContext.getELResolver()
           
 

Uses of ELResolver in javax.beans.binding
 

Methods in javax.beans.binding with parameters of type ELResolver
 void BindingContext.addResolver(ELResolver resolver)
          Adds an ELResover to the list of resolvers used in resolving values.
 void BindingContext.removeResolver(ELResolver resolver)
          Removes an ELResover from the list of resolvers used in resolving values.
 

Uses of ELResolver in javax.el
 

Subclasses of ELResolver in javax.el
 class ArrayELResolver
          Defines property resolution behavior on arrays.
 class BeanELResolver
          Defines property resolution behavior on objects using the JavaBeans component architecture.
 class CompositeELResolver
          Maintains an ordered composite list of child ELResolvers.
 class ListELResolver
          Defines property resolution behavior on instances of List.
 class MapELResolver
          Defines property resolution behavior on instances of Map.
 class ResourceBundleELResolver
          Defines property resolution behavior on instances of ResourceBundle.
 

Methods in javax.el that return ELResolver
abstract  ELResolver ELContext.getELResolver()
          Retrieves the ELResolver associated with this context.
 

Methods in javax.el with parameters of type ELResolver
 void CompositeELResolver.add(ELResolver elResolver)
          Adds the given resolver to the list of component resolvers.