Java javax.servlet.jsp JspContext fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet.jsp JspContext fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet.jsp JspContext.

The text is from its open source code.

Method

ObjectfindAttribute(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.
ObjectgetAttribute(String name, int scope)
Return the object associated with the name in the specified scope or null if not found.
EnumerationgetAttributeNamesInScope(int scope)
Enumerate all the attributes in a given scope.
JspWritergetOut()
The current value of the out object (a JspWriter).
voidremoveAttribute(String name)
Remove the object reference associated with the given name from all scopes.
voidsetAttribute(String name, Object value)
Register the name and value specified with page scope semantics.
voidsetAttribute(String name, Object value, int scope)
Register the name and value specified with appropriate scope semantics.