Package javax.el

Class ELContext

java.lang.Object
javax.el.ELContext

public abstract class ELContext extends Object
  • Constructor Details

    • ELContext

      public ELContext()
  • Method Details

    • setPropertyResolved

      public void setPropertyResolved(boolean resolved)
    • isPropertyResolved

      public boolean isPropertyResolved()
    • putContext

      public void putContext(Class key, Object contextObject)
      Add an object to this EL context under the given key.
      Parameters:
      key - The key under which to store the object
      contextObject - The object to add
      Throws:
      NullPointerException - If the supplied key or context is null
    • getContext

      public Object getContext(Class key)
      Obtain the context object for the given key.
      Parameters:
      key - The key of the required context object
      Returns:
      The value of the context object associated with the given key
      Throws:
      NullPointerException - If the supplied key is null
    • getELResolver

      public abstract ELResolver getELResolver()
    • getFunctionMapper

      public abstract FunctionMapper getFunctionMapper()
    • getLocale

      public Locale getLocale()
    • setLocale

      public void setLocale(Locale locale)
    • getVariableMapper

      public abstract VariableMapper getVariableMapper()