JSPTemplates

Uses of Interface
org.tp23.jasper.JspCompilationContext

Packages that use JspCompilationContext
org.tp23.jasper   
org.tp23.jasper.compiler This package contains code that compiles the JSP pages. 
org.tp23.jasper.servlet This package contains code that is mostly specific to running the JSP compiler in a webcontext. 
 

Uses of JspCompilationContext in org.tp23.jasper
 

Classes in org.tp23.jasper that implement JspCompilationContext
 class CommandLineContext
          Holds data used on a per-page compilation context that would otherwise spill over to other pages being compiled.
 class JspEngineContext
          A place holder for various things that are used through out the JSP engine.
 

Uses of JspCompilationContext in org.tp23.jasper.compiler
 

Fields in org.tp23.jasper.compiler declared as JspCompilationContext
protected  JspCompilationContext Compiler.ctxt
           
 

Methods in org.tp23.jasper.compiler with parameters of type JspCompilationContext
 void TagBeginGenerator.init(JspCompilationContext ctxt)
           
 void PluginGenerator.init(JspCompilationContext ctxt)
           
static JspReader JspReader.createJspReader(java.lang.String file, JspCompilationContext ctx, java.lang.String encoding)
           
 void Generator.init(JspCompilationContext ctxt)
           
 

Constructors in org.tp23.jasper.compiler with parameters of type JspCompilationContext
Compiler(JspCompilationContext ctxt)
           
TagLibraryInfoImpl(JspCompilationContext ctxt, java.lang.String prefix, java.lang.String uriIn)
           
JspReader(java.lang.String file, JspCompilationContext ctx, java.lang.String encoding)
           
JspCompiler(JspCompilationContext ctxt)
           
 

Uses of JspCompilationContext in org.tp23.jasper.servlet
 

Methods in org.tp23.jasper.servlet with parameters of type JspCompilationContext
 boolean JspServlet.isOutDated(java.io.File jsp, JspCompilationContext ctxt, Mangler mangler)
          Determines whether the current JSP class is older than the JSP file from whence it came
 


JSPTemplates