Package org.apache.jasper.compiler
Class ELInterpreterFactory.DefaultELInterpreter
- java.lang.Object
- 
- org.apache.jasper.compiler.ELInterpreterFactory.DefaultELInterpreter
 
- 
- All Implemented Interfaces:
- ELInterpreter
 - Enclosing class:
- ELInterpreterFactory
 
 public static class ELInterpreterFactory.DefaultELInterpreter extends java.lang.Object implements ELInterpreter 
- 
- 
Constructor SummaryConstructors Constructor Description DefaultELInterpreter()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringinterpreterCall(JspCompilationContext context, boolean isTagFile, java.lang.String expression, java.lang.Class<?> expectedType, java.lang.String fnmapvar)Returns the string representing the code that will be inserted into the servlet generated for JSP.
 
- 
- 
- 
Method Detail- 
interpreterCallpublic java.lang.String interpreterCall(JspCompilationContext context, boolean isTagFile, java.lang.String expression, java.lang.Class<?> expectedType, java.lang.String fnmapvar) Description copied from interface:ELInterpreterReturns the string representing the code that will be inserted into the servlet generated for JSP. The default implementation creates a call toPageContextImpl.proprietaryEvaluate( String, Class, javax.servlet.jsp.PageContext, org.apache.jasper.runtime.ProtectedFunctionMapper)but other implementations may produce more optimised code.- Specified by:
- interpreterCallin interface- ELInterpreter
- Parameters:
- context- The compilation context
- isTagFile-- trueif in a tag file rather than a JSP
- expression- a String containing zero or more "${}" expressions
- expectedType- the expected type of the interpreted result
- fnmapvar- Variable pointing to a function map.
- Returns:
- a String representing a call to the EL interpreter.
 
 
- 
 
-