Uses of Class
javax.servlet.jsp.JspContext
-
Packages that use JspContext Package Description javax.servlet.jsp Classes and interfaces for the Core JSP 2.3 API.javax.servlet.jsp.tagext Classes and interfaces for the definition of JavaServer Pages Tag Libraries. -
-
Uses of JspContext in javax.servlet.jsp
Subclasses of JspContext in javax.servlet.jsp Modifier and Type Class Description class
PageContext
PageContext extends JspContext to provide useful context information for when JSP technology is used in a Servlet environment. -
Uses of JspContext in javax.servlet.jsp.tagext
Fields in javax.servlet.jsp.tagext declared as JspContext Modifier and Type Field Description private JspContext
SimpleTagSupport. jspContext
The JSP context for the upcoming tag invocation.Methods in javax.servlet.jsp.tagext that return JspContext Modifier and Type Method Description abstract JspContext
JspFragment. getJspContext()
Returns the JspContext that is bound to this JspFragment.protected JspContext
SimpleTagSupport. getJspContext()
Returns the page context passed in by the container via setJspContext.Methods in javax.servlet.jsp.tagext with parameters of type JspContext Modifier and Type Method Description void
SimpleTag. setJspContext(JspContext pc)
Called by the container to provide this tag handler with theJspContext
for this invocation.void
SimpleTagSupport. setJspContext(JspContext pc)
Stores the provided JSP context in the private jspContext field.
-