| java.lang.Object com.caucho.jsp.JspParser
JspParser | public class JspParser (Code) | | Parses the JSP page. Both the XML and JSP tags are understood. However,
escaping is always done using JSP rules.
|
Inner Class :class Include | |
JSP_DECLARATION | final public static QName JSP_DECLARATION(Code) | | |
JSP_DIRECTIVE_ATTRIBUTE | final public static QName JSP_DIRECTIVE_ATTRIBUTE(Code) | | |
JSP_DIRECTIVE_CACHE | final public static QName JSP_DIRECTIVE_CACHE(Code) | | |
JSP_DIRECTIVE_INCLUDE | final public static QName JSP_DIRECTIVE_INCLUDE(Code) | | |
JSP_DIRECTIVE_PAGE | final public static QName JSP_DIRECTIVE_PAGE(Code) | | |
JSP_DIRECTIVE_TAG | final public static QName JSP_DIRECTIVE_TAG(Code) | | |
JSP_DIRECTIVE_TAGLIB | final public static QName JSP_DIRECTIVE_TAGLIB(Code) | | |
JSP_DIRECTIVE_VARIABLE | final public static QName JSP_DIRECTIVE_VARIABLE(Code) | | |
JSP_EXPRESSION | final public static QName JSP_EXPRESSION(Code) | | |
JSP_SCRIPTLET | final public static QName JSP_SCRIPTLET(Code) | | |
JSTL_CORE_CHOOSE | final public static QName JSTL_CORE_CHOOSE(Code) | | |
JSTL_CORE_FOREACH | final public static QName JSTL_CORE_FOREACH(Code) | | |
JSTL_CORE_OTHERWISE | final public static QName JSTL_CORE_OTHERWISE(Code) | | |
JSTL_CORE_OUT | final public static QName JSTL_CORE_OUT(Code) | | |
JSTL_CORE_WHEN | final public static QName JSTL_CORE_WHEN(Code) | | |
addPrelude | public void addPrelude(String prelude)(Code) | | Adds a prelude.
|
error | public JspParseException error(String message)(Code) | | Creates an error message adding the filename and line.
Parameters: message - the error message |
getParseState | ParseState getParseState()(Code) | | Sets the parse state, which stores state information for the parsing.
|
parse | void parse(Path path, String uri) throws Exception(Code) | | Starts parsing the JSP page.
Parameters: path - the JSP source file Parameters: uri - the URI for the JSP source file. |
parseTag | void parseTag(Path path, String uri) throws Exception(Code) | | Starts parsing the JSP page as a tag.
Parameters: path - the JSP source file Parameters: uri - the URI for the JSP source file. |
setContextPath | void setContextPath(String contextPath)(Code) | | Sets the context path for error messages.
|
setJspBuilder | void setJspBuilder(JspBuilder builder)(Code) | | Sets the JSP builder, which receives the SAX-like events from
JSP parser.
|
setParseState | void setParseState(ParseState parseState)(Code) | | Sets the parse state, which stores state information for the parsing.
|
|
|