All Packages Class Hierarchy This Package Previous Next Index
Class javax.servlet.jsp.PageContext
java.lang.Object
|
+----javax.servlet.jsp.PageContext
- public abstract class PageContext
- extends Object
XXX
-
APPCONTEXT
- XXX
-
APPLICATION_SCOPE
- XXX
-
CONFIG
- XXX
-
DEFAULT_BUFFER
- XXX
-
EXCEPTION
- XXX
-
NO_BUFFER
- XXX
-
OUT
- XXX
-
PAGE
- XXX
-
PAGE_SCOPE
- XXX
-
PAGECONTEXT
- XXX
-
REQUEST
- XXX
-
REQUEST_SCOPE
- XXX
-
RESPONSE
- XXX
-
SESSION
- XXX
-
SESSION_SCOPE
- XXX
-
PageContext()
-
-
findAttribute(String)
-
-
forward(String)
- XXX
-
getAttribute(String, int)
- XXX
-
getAttributeNamesInScope(int)
- XXX
-
getAttributesScope(String)
- XXX
-
getException()
-
-
getOut()
-
-
getPage()
-
-
getRequest()
-
-
getResponse()
-
-
getServletConfig()
-
-
getServletContext()
-
-
getSession()
-
-
handlePageException(Exception)
-
-
include(String)
- XXX
-
initialize(Servlet, ServletRequest, ServletResponse, String, boolean, int, boolean)
- XXX
-
release()
-
-
removeAttribute(String)
- XXX
-
removeAttribute(String, int)
- XXX
-
setAttribute(String, Object)
- XXX
-
setAttribute(String, Object, int)
- XXX
APPCONTEXT
public static final String APPCONTEXT
- XXX
CONFIG
public static final String CONFIG
- XXX
EXCEPTION
public static final String EXCEPTION
- XXX
OUT
public static final String OUT
- XXX
PAGE
public static final String PAGE
- XXX
PAGECONTEXT
public static final String PAGECONTEXT
- XXX
REQUEST
public static final String REQUEST
- XXX
RESPONSE
public static final String RESPONSE
- XXX
SESSION
public static final String SESSION
- XXX
APPLICATION_SCOPE
public static final int APPLICATION_SCOPE
- XXX
PAGE_SCOPE
public static final int PAGE_SCOPE
- XXX
REQUEST_SCOPE
public static final int REQUEST_SCOPE
- XXX
SESSION_SCOPE
public static final int SESSION_SCOPE
- XXX
DEFAULT_BUFFER
public static final int DEFAULT_BUFFER
- XXX
NO_BUFFER
public static final int NO_BUFFER
- XXX
PageContext
public PageContext()
initialize
public abstract void initialize(Servlet servlet,
ServletRequest request,
ServletResponse response,
String errorPageURL,
boolean needsSession,
int bufferSize,
boolean autoflush) throws IOException, IllegalStateException, IllegalArgumentException
- XXX
- Parameters:
- servlet - XXX
- request - XXX
- response - XXX
- errorPageURL - XXX
- needsSession - XXX
- bufferSize - XXX
- autoflush - XXX
- Throws: IOException
- XXX
- Throws: IllegalStateException
- XXX
- Throws: IllegalArgumentException
- XXX
release
public abstract void release()
setAttribute
public abstract void setAttribute(String name,
Object attribute) throws NullPointerException
- XXX
- Parameters:
- name - XXX
- attribute - XXX
- Throws: NullPointerException
- XXX
setAttribute
public abstract void setAttribute(String name,
Object attribute,
int scope) throws IllegalArgumentException, NullPointerException
- XXX
- Parameters:
- name - XXX
- attribute - XXX
- scope - XXX
- Throws: IllegalArgumentException
- XXX
- Throws: NullPointerException
- XXX
getAttribute
public abstract Object getAttribute(String name,
int scope) throws IllegalArgumentException, NullPointerException
- XXX
- Returns:
- XXX
findAttribute
public abstract Object findAttribute(String name)
removeAttribute
public abstract void removeAttribute(String name)
- XXX
- Parameters:
- name - XXX
removeAttribute
public abstract void removeAttribute(String name,
int scope)
- XXX
- Parameters:
- name - XXX
- scope - XXX
getAttributesScope
public abstract int getAttributesScope(String name)
- XXX
- Parameters:
- name - XXX
- Returns:
- XXX
getAttributeNamesInScope
public abstract Enumeration getAttributeNamesInScope(int scope)
- XXX
- Parameters:
- scope - XXX
- Returns:
- XXX
getOut
public abstract JspWriter getOut()
getSession
public abstract HttpSession getSession()
getPage
public abstract Object getPage()
- Returns:
- the page in the form of a Servlet
getRequest
public abstract ServletRequest getRequest()
getResponse
public abstract ServletResponse getResponse()
getException
public abstract Exception getException()
getServletConfig
public abstract ServletConfig getServletConfig()
getServletContext
public abstract ServletContext getServletContext()
forward
public abstract void forward(String urlPath) throws IOException, ServletException, IllegalArgumentException, IllegalStateException, SecurityException
- XXX
include
public abstract void include(String urlPath) throws IOException, ServletException, IllegalArgumentException, SecurityException
- XXX
handlePageException
public abstract void handlePageException(Exception exception) throws IOException, ServletException
All Packages Class Hierarchy This Package Previous Next Index