JSPTemplates

Uses of Interface
org.tp23.jasper.compiler.Mangler

Packages that use Mangler
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 Mangler in org.tp23.jasper.compiler
 

Classes in org.tp23.jasper.compiler that implement Mangler
 class CommandLineCompiler
          Overrides some methods so that we get the desired effects.
 class JspCompiler
          JspCompiler is an implementation of Compiler with a funky code mangling and code generation scheme! The reason that it is both a sub-class of compiler and an implementation of mangler is because the isOutDated method that is overridden and the name mangulation both depend on the actual existance of other class and java files.
 

Fields in org.tp23.jasper.compiler declared as Mangler
protected  Mangler Compiler.mangler
           
 

Methods in org.tp23.jasper.compiler with parameters of type Mangler
 void Compiler.setMangler(Mangler mangler)
          Set Mangler which will be used as part of compile().
 

Uses of Mangler in org.tp23.jasper.servlet
 

Methods in org.tp23.jasper.servlet with parameters of type Mangler
 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