Uses of Class
jakarta.servlet.jsp.JspWriter
-
Packages that use JspWriter Package Description jakarta.servlet.jsp jakarta.servlet.jsp.tagext -
-
Uses of JspWriter in jakarta.servlet.jsp
Methods in jakarta.servlet.jsp that return JspWriter Modifier and Type Method Description abstract JspWriter
JspContext. getOut()
The current value of the out object (a JspWriter).JspWriter
JspContext. popBody()
Return the previous JspWriter "out" saved by the matching pushBody(), and update the value of the "out" attribute in the page scope attribute namespace of the JspContext.JspWriter
JspContext. pushBody(Writer writer)
Return a new JspWriter object that sends output to the provided Writer. -
Uses of JspWriter in jakarta.servlet.jsp.tagext
Subclasses of JspWriter in jakarta.servlet.jsp.tagext Modifier and Type Class Description class
BodyContent
An encapsulation of the evaluation of the body of an action so it is available to a tag handler.Methods in jakarta.servlet.jsp.tagext that return JspWriter Modifier and Type Method Description JspWriter
BodyContent. getEnclosingWriter()
Get the enclosing JspWriter.JspWriter
BodyTagSupport. getPreviousOut()
Get surrounding out JspWriter.Constructors in jakarta.servlet.jsp.tagext with parameters of type JspWriter Constructor Description BodyContent(JspWriter e)
Protected constructor.
-