Package org.apache.jasper.runtime.el.jstl

Examples of org.apache.jasper.runtime.el.jstl.ELEvaluator


        // XXX - This is currently inefficient.  A new evaluator,
        // JSTLVariableResolverWrapper, and FuntionMapperMap is created for
        // each evaluate call.  Things should get better once the JSTL
        // implementation is moved out of JSTL into its own project.
        try {
            return new ELEvaluator( resolver ).evaluate(
                expression, this.pageContext, expectedType, fMapperMap,
                defaultPrefix );
        }
        catch( org.apache.jasper.runtime.el.jstl.ELException e ) {
            throw new ELException( e );
View Full Code Here


            // XXX - This is currently inefficient.  A new evaluator and
            // JSTLVariableResolverWrapper is created for
            // each evaluate call.  Things should get better once the JSTL
            // implementation is moved out of JSTL into its own project.
            try {
                return new ELEvaluator( resolver ).evaluate(
                    this.expression, ExpressionEvaluatorImpl.this.pageContext,
                    this.expectedType, this.fMapperMap,
                    this.defaultPrefix );
            }
            catch( org.apache.jasper.runtime.el.jstl.ELException e ) {
View Full Code Here

TOP

Related Classes of org.apache.jasper.runtime.el.jstl.ELEvaluator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.