List of usage examples for javax.el ELContext subclass-usage
From source file com.github.htfv.maven.plugins.buildconfigurator.core.el.BuildConfiguratorELContext.java
/**
* Implements Build Configurator specific evaluation context.
*
* {@code BuildConfiguratorELContext} object may and should be reused within one
* mojo execution, because it caches results of expression evaluations. It may
* not be reused between multiple executions, because it is not thread-safe.
From source file therian.uelbox.ELContextWrapper.java
/** * ELContext wrapper which wraps the ELResolver and may shadow variables, locale settings, and context objects. */ public abstract class ELContextWrapper extends ELContext { private final ELResolver elResolver; private final VariableMapper variableMapper;
From source file com.icesoft.faces.el.ELContextImpl.java
public class ELContextImpl extends ELContext { private FunctionMapper functionMapper; private VariableMapper variableMapper; private ELResolver resolver; private static final Log log = LogFactory.getLog(ELContextImpl.class);