Uses of Class
javax.servlet.jsp.JspContext
-
Packages that use JspContext Package Description javax.servlet.jsp javax.servlet.jsp.tagext org.apache.jasper.runtime -
-
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. -
Uses of JspContext in org.apache.jasper.runtime
Subclasses of JspContext in org.apache.jasper.runtime Modifier and Type Class Description class
JspContextWrapper
Implementation of a JSP Context Wrapper.class
PageContextImpl
Implementation of the PageContext class from the JSP spec.Fields in org.apache.jasper.runtime declared as JspContext Modifier and Type Field Description protected JspContext
JspFragmentHelper. jspContext
Methods in org.apache.jasper.runtime that return JspContext Modifier and Type Method Description JspContext
JspFragmentHelper. getJspContext()
Constructors in org.apache.jasper.runtime with parameters of type JspContext Constructor Description JspContextWrapper(JspContext jspContext, java.util.ArrayList<java.lang.String> nestedVars, java.util.ArrayList<java.lang.String> atBeginVars, java.util.ArrayList<java.lang.String> atEndVars, java.util.Map<java.lang.String,java.lang.String> aliases)
JspFragmentHelper(int discriminator, JspContext jspContext, JspTag parentTag)
-