Methods Summary |
---|
public boolean | genStringAsByteArray()
return this.genStringAsByteArray;
|
public boolean | genStringAsCharArray()Are Text strings to be generated as char arrays?
return this.genStringAsCharArray;
|
private boolean | getBoolean(javax.servlet.ServletConfig config, boolean init, java.lang.String param)
String sParam = config.getInitParameter(param);
if (sParam != null) {
if (sParam.equalsIgnoreCase("true")) {
return true;
}
if (sParam.equalsIgnoreCase("false")) {
return false;
}
if (log.isWarnEnabled()) {
log.warn(Localizer.getMessage("jsp.warning.boolean", param,
(init? "true": "false")));
}
}
return init;
|
public int | getCheckInterval()Background JSP compile thread check intervall
return checkInterval;
|
public boolean | getClassDebugInfo()Should class files be compiled with debug information?
return classDebugInfo;
|
public java.lang.String | getClassPath()What classpath should I use while compiling the servlets
generated from JSP files?
return classpath;
|
public java.lang.String | getCompiler()Compiler to use.
return compiler;
|
public java.lang.String | getCompilerSourceVM()
return compilerSourceVM;
|
public java.lang.String | getCompilerTargetVM()
return compilerTargetVM;
|
public boolean | getDevelopment()Is Jasper being used in development mode?
return development;
|
public boolean | getErrorOnUseBeanInvalidClassAttribute()
return errorOnUseBeanInvalidClassAttribute;
|
public boolean | getFork()
return fork;
|
public java.lang.String | getIeClassId()Class ID for use in the plugin tag when the browser is IE.
return ieClassId;
|
public int | getInitialCapacity()Gets initial capacity of HashMap which maps JSPs to their corresponding
servlets.
return initialCapacity;
|
public java.lang.String | getJavaEncoding()
return javaEncoding;
|
public org.apache.jasper.compiler.JspConfig | getJspConfig()
return jspConfig;
|
public boolean | getKeepGenerated()Are we keeping generated code around?
return keepGenerated;
|
public boolean | getMappedFile()Are we supporting HTML mapped servlets?
return mappedFile;
|
public int | getModificationTestInterval()Modification test interval.
return modificationTestInterval;
|
public java.lang.String | getProperty(java.lang.String name)
// END SJSWS
return settings.getProperty( name );
|
public boolean | getSaveBytecode()
return this.saveBytecode;
|
public java.io.File | getScratchDir()What is my scratch dir?
return scratchDir;
|
public boolean | getSendErrorToClient()Should errors be sent to client or thrown into stderr?
return sendErrorToClient;
|
public java.lang.String | getSystemClassPath()Gets the system class path.
return sysClassPath;
|
public org.apache.jasper.compiler.TagPluginManager | getTagPluginManager()
return tagPluginManager;
|
public org.apache.jasper.compiler.TldLocationsCache | getTldLocationsCache()
return tldLocationsCache;
|
public boolean | getTrimSpaces()Should white spaces between directives or actions be trimmed?
return trimSpaces;
|
public boolean | getUsePrecompiled()Returns the value of the usePrecompiled (or use-precompiled) init
param.
return usePrecompiled;
|
public boolean | isDefaultBufferNone()
return defaultBufferNone;
|
private boolean | isJDK6()
try {
Class.forName("javax.tools.ToolProvider");
return true;
} catch (ClassNotFoundException ex) {
}
return false;
|
public boolean | isPoolingEnabled()
return isPoolingEnabled;
|
public boolean | isSmapDumped()Should SMAP info for JSR45 debugging be dumped to a file?
return isSmapDumped;
|
public boolean | isSmapSuppressed()Is the generation of SMAP info for JSR45 debuggin suppressed?
return isSmapSuppressed;
|
public boolean | isValidationEnabled()
return isValidationEnabled;
|
public boolean | isXpoweredBy()Is generation of X-Powered-By response header enabled/disabled?
return xpoweredBy;
|
private void | parseCheckInterval(java.lang.String param)
try {
this.checkInterval = Integer.parseInt(param);
} catch(NumberFormatException ex) {
if (log.isWarnEnabled()) {
log.warn(Localizer.getMessage("jsp.warning.checkInterval"));
}
}
|
private void | parseModificationTestInterval(java.lang.String param)
try {
this.modificationTestInterval = Integer.parseInt(param);
} catch(NumberFormatException ex) {
if (log.isWarnEnabled()) {
log.warn(Localizer.getMessage("jsp.warning.modificationTestInterval"));
}
}
|
public void | setErrorOnUseBeanInvalidClassAttribute(boolean b)
errorOnUseBeanInvalidClassAttribute = b;
|
public void | setProperty(java.lang.String name, java.lang.String value)
if (name != null && value != null){
settings.setProperty( name, value );
}
|
public void | setTldLocationsCache(org.apache.jasper.compiler.TldLocationsCache tldC)
tldLocationsCache = tldC;
|