List of usage examples for org.apache.commons.el VariableResolverImpl VariableResolverImpl
public VariableResolverImpl(PageContext pCtx)
From source file:org.apache.jasper.runtime.PageContextImpl.java
PageContextImpl(JspFactory factory) {
this.factory = factory;
this.variableResolver = new VariableResolverImpl(this);
this.outs = new BodyContentImpl[0];
this.attributes = new Hashtable(16);
this.depth = -1;
}
From source file:org.apache.struts2.jasper.runtime.PageContextImpl.java
PageContextImpl(JspFactory factory) {
this.variableResolver = new VariableResolverImpl(this);
this.outs = new BodyContentImpl[0];
this.attributes = new Hashtable(16);
this.depth = -1;
}