| java.lang.Object javax.servlet.jsp.JspContext javax.servlet.jsp.PageContext org.apache.jasper.runtime.JspContextWrapper
JspContextWrapper | public class JspContextWrapper extends PageContext implements VariableResolver(Code) | | Implementation of a JSP Context Wrapper.
The JSP Context Wrapper is a JspContext created and maintained by a tag
handler implementation. It wraps the Invoking JSP Context, that is, the
JspContext instance passed to the tag handler by the invoking page via
setJspContext().
author: Kin-man Chung author: Jan Luehe author: Jacob Hookom |
Method Summary | |
public Object | findAttribute(String name) | public void | forward(String relativeUrlPath) | public Object | getAttribute(String name) | public Object | getAttribute(String name, int scope) | public Enumeration<String> | getAttributeNamesInScope(int scope) | public int | getAttributesScope(String name) | public ELContext | getELContext() | public Exception | getException() | public ExpressionEvaluator | getExpressionEvaluator() | public JspWriter | getOut() | public Object | getPage() | public ServletRequest | getRequest() | public ServletResponse | getResponse() | public ServletConfig | getServletConfig() | public ServletContext | getServletContext() | public HttpSession | getSession() | public VariableResolver | getVariableResolver() | public void | handlePageException(Exception ex) | public void | handlePageException(Throwable t) | public void | include(String relativeUrlPath) | public void | include(String relativeUrlPath, boolean flush) | public void | initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush) | public JspWriter | popBody() | public BodyContent | pushBody() | public JspWriter | pushBody(Writer writer) | public void | release() | public void | removeAttribute(String name) | public void | removeAttribute(String name, int scope) | public Object | resolveVariable(String pName) | public void | setAttribute(String name, Object value) | public void | setAttribute(String name, Object value, int scope) | public void | syncBeforeInvoke() | public void | syncBeginTagFile() | public void | syncEndTagFile() |
getAttributesScope | public int getAttributesScope(String name)(Code) | | |
release | public void release()(Code) | | |
removeAttribute | public void removeAttribute(String name)(Code) | | |
removeAttribute | public void removeAttribute(String name, int scope)(Code) | | |
syncBeforeInvoke | public void syncBeforeInvoke()(Code) | | Synchronize variables before fragment invokation
|
syncBeginTagFile | public void syncBeginTagFile()(Code) | | Synchronize variables at begin of tag file
|
syncEndTagFile | public void syncEndTagFile()(Code) | | Synchronize variables at end of tag file
|
Methods inherited from javax.servlet.jsp.PageContext | abstract public void forward(String relativeUrlPath) throws ServletException, IOException(Code)(Java Doc) public ErrorData getErrorData()(Code)(Java Doc) abstract public Exception getException()(Code)(Java Doc) abstract public Object getPage()(Code)(Java Doc) abstract public ServletRequest getRequest()(Code)(Java Doc) abstract public ServletResponse getResponse()(Code)(Java Doc) abstract public ServletConfig getServletConfig()(Code)(Java Doc) abstract public ServletContext getServletContext()(Code)(Java Doc) abstract public HttpSession getSession()(Code)(Java Doc) abstract public void handlePageException(Exception e) throws ServletException, IOException(Code)(Java Doc) abstract public void handlePageException(Throwable t) throws ServletException, IOException(Code)(Java Doc) abstract public void include(String relativeUrlPath) throws ServletException, IOException(Code)(Java Doc) abstract public void include(String relativeUrlPath, boolean flush) throws ServletException, IOException(Code)(Java Doc) abstract public void initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush) throws IOException, IllegalStateException, IllegalArgumentException(Code)(Java Doc) public BodyContent pushBody()(Code)(Java Doc) abstract public void release()(Code)(Java Doc)
|
|
|