Example usage for org.apache.commons.el VariableResolverImpl VariableResolverImpl

List of usage examples for org.apache.commons.el VariableResolverImpl VariableResolverImpl

Introduction

In this page you can find the example usage for org.apache.commons.el VariableResolverImpl VariableResolverImpl.

Prototype

public VariableResolverImpl(PageContext pCtx) 

Source Link

Document

Constructor

Usage

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;
}