Some constants and other global data that are used by the compiler and the runtime.
author: Anil K. Vijendran author: Harish Prabandham author: Lars Andersen
getString(String key, Object[] args) Format the string that is looked up using "key" using "args".
final public static void
message(String key, int verbosityLevel) Print a message into standard error with a certain verbosity
level.
final public static void
message(String key, Object[] args, int verbosityLevel) Print a message into standard error with a certain verbosity
level after formatting it using "args".
Field Detail
CACHED_DTD_PUBLIC_IDS
final public static String[] CACHED_DTD_PUBLIC_IDS(Code)
List of the Public IDs that we cache, and their
associated location. This is used by
an EntityResolver to return the location of the
cached copy of a DTD.
CACHED_DTD_RESOURCE_PATHS
final public static String[] CACHED_DTD_RESOURCE_PATHS(Code)
FIXME
Request attribute for <jsp-file> element of a
servlet definition. If present on a request, this overrides the
value returned by request.getServletPath() to select
the JSP page to be executed.
The query parameter that causes the JSP engine to just
pregenerated the servlet but not invoke it.
SERVICE_METHOD_NAME
final public static String SERVICE_METHOD_NAME(Code)
_jspService is the name of the method that is called by
HttpJspBase.service(). This is where most of the code generated
from JSPs go.
SERVLET_CLASSPATH
final public static String SERVLET_CLASSPATH(Code)
FIXME
ServletContext attribute for classpath. This is tomcat specific.
Other servlet engines can choose to have this attribute if they
want to have this JSP engine running on them.
SERVLET_CLASS_LOADER
final public static String SERVLET_CLASS_LOADER(Code)
FIXME
ServletContext attribute for class loader. This is tomcat specific.
Other servlet engines can choose to have this attribute if they
want to have this JSP engine running on them.
SERVLET_CONTENT_TYPE
final public static String SERVLET_CONTENT_TYPE(Code)
Default servlet content type.
STANDARD_IMPORTS
final public static String[] STANDARD_IMPORTS(Code)
These classes/packages are automatically imported by the
generated code.
TAGLIB_DTD_PUBLIC_ID_11
final public static String TAGLIB_DTD_PUBLIC_ID_11(Code)
Public Id and the Resource path (of the cached copy)
of the DTDs for tag library descriptors.
TAGLIB_DTD_PUBLIC_ID_12
final public static String TAGLIB_DTD_PUBLIC_ID_12(Code)
TAGLIB_DTD_RESOURCE_PATH_11
final public static String TAGLIB_DTD_RESOURCE_PATH_11(Code)
TAGLIB_DTD_RESOURCE_PATH_12
final public static String TAGLIB_DTD_RESOURCE_PATH_12(Code)
Format the string that is looked up using "key" using "args".
message
final public static void message(String key, int verbosityLevel)(Code)
Print a message into standard error with a certain verbosity
level.
Parameters: key - is used to look up the text for the message (usinggetString()). Parameters: verbosityLevel - is used to determine if this output isappropriate for the current verbositylevel.
message
final public static void message(String key, Object[] args, int verbosityLevel)(Code)
Print a message into standard error with a certain verbosity
level after formatting it using "args".
Parameters: key - is used to look up the message. Parameters: args - is used to format the message. Parameters: verbosityLevel - is used to determine if this output isappropriate for the current verbositylevel.