Package | Description |
---|---|
javax.faces.webapp |
Classes required for integration of
JavaServer Faces into web applications, including a standard servlet,
base classes for JSP custom component
tags, and concrete tag implementations for core tags.
|
javax.servlet.jsp |
Classes and interfaces for the Core JSP 2.1 API.
|
javax.servlet.jsp.tagext |
Classes and interfaces for the definition of JavaServer Pages Tag Libraries.
|
org.apache.taglibs.standard.util |
Modifier and Type | Method and Description |
---|---|
JspWriter |
UIComponentClassicTagBase.getPreviousOut()
Get the
JspWriter from our BodyContent . |
Modifier and Type | Method and 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.
|
Modifier and Type | Class and 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 and Description |
---|---|
JspWriter |
BodyContent.getEnclosingWriter()
Get the enclosing JspWriter.
|
JspWriter |
BodyTagSupport.getPreviousOut()
Get surrounding out JspWriter.
|
Constructor and Description |
---|
BodyContent(JspWriter e)
Protected constructor.
|
Modifier and Type | Method and Description |
---|---|
static void |
EscapeXML.emit(char[] buffer,
int from,
int count,
JspWriter out)
Emit escaped content into the specified JSPWriter.
|
static void |
EscapeXML.emit(Object src,
boolean escapeXml,
JspWriter out)
Emit the supplied object to the specified writer, escaping characters if needed.
|
static void |
EscapeXML.emit(Reader src,
boolean escapeXml,
JspWriter out)
Copy the content of a Reader into the specified JSPWriter escaping characters if needed.
|
static void |
EscapeXML.emit(String src,
boolean escapeXml,
JspWriter out)
Emit the supplied String to the specified writer, escaping characters if needed.
|
static void |
EscapeXML.emit(String src,
JspWriter out)
Emit escaped content into the specified JSPWriter.
|
Copyright © 2016 JBoss by Red Hat. All rights reserved.