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.
|
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(java.io.Writer writer) |
Return a new JspWriter object that sends output to the
provided Writer.
|
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.
|
Modifier and Type | Method | Description |
---|---|---|
JspWriter |
BodyContent.getEnclosingWriter() |
Get the enclosing JspWriter.
|
JspWriter |
BodyTagSupport.getPreviousOut() |
Get surrounding out JspWriter.
|
Constructor | Description |
---|---|
BodyContent(JspWriter e) |
Protected constructor.
|