Example usage for Java javax.servlet.jsp JspContext fields, constructors, methods, implement or subclass
The text is from its open source code.
Object | findAttribute(String name) Searches for the named attribute in page, request, session (if valid), and application scope(s) in order and returns the value associated or null. |
Object | getAttribute(String name, int scope) Return the object associated with the name in the specified scope or null if not found. |
Enumeration | getAttributeNamesInScope(int scope) Enumerate all the attributes in a given scope. |
JspWriter | getOut() The current value of the out object (a JspWriter). |
void | removeAttribute(String name) Remove the object reference associated with the given name from all scopes. |
void | setAttribute(String name, Object value) Register the name and value specified with page scope semantics. |
void | setAttribute(String name, Object value, int scope) Register the name and value specified with appropriate scope semantics. |