| 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.jstl.core | 
 Classes and interfaces related to the core tag library component of the JavaServer Pages Standard Tag Library (JSTL). 
 | 
| javax.servlet.jsp.jstl.fmt | 
 Classes and interfaces related to the locale sensitive formatting tag library component of the JavaServer Pages Standard Tag Library (JSTL). 
 | 
| javax.servlet.jsp.tagext | 
 Classes and interfaces for the definition of JavaServer Pages Tag Libraries. 
 | 
| org.apache.taglibs.standard.lang.jstl | |
| org.apache.taglibs.standard.lang.jstl.test | |
| org.apache.taglibs.standard.lang.support | |
| org.apache.taglibs.standard.tag.common.core | |
| org.apache.taglibs.standard.tag.common.fmt | |
| org.apache.taglibs.standard.tag.common.xml | |
| org.apache.taglibs.standard.tag.el.core | 
| Modifier and Type | Field and Description | 
|---|---|
protected PageContext | 
UIComponentClassicTagBase.pageContext
The JSP  
PageContext for the page we are embedded in. | 
| Modifier and Type | Method and Description | 
|---|---|
static UIComponentClassicTagBase | 
UIComponentClassicTagBase.getParentUIComponentClassicTagBase(PageContext context)
Locate and return the nearest enclosing  
UIComponentClassicTagBase
 if any; otherwise, return null. | 
static UIComponentTag | 
UIComponentTag.getParentUIComponentTag(PageContext context)
Deprecated.  
Locate and return the nearest enclosing  
UIComponentTag
 if any; otherwise, return null. | 
void | 
UIComponentClassicTagBase.setPageContext(PageContext pageContext)
Set the  
PageContext of the page containing this
 tag instance. | 
| Modifier and Type | Method and Description | 
|---|---|
abstract PageContext | 
JspFactory.getPageContext(Servlet servlet,
              ServletRequest request,
              ServletResponse response,
              String errorPageURL,
              boolean needsSession,
              int buffer,
              boolean autoflush)
 obtains an instance of an implementation dependent 
 javax.servlet.jsp.PageContext abstract class for the calling Servlet
 and currently pending request and response. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract void | 
JspFactory.releasePageContext(PageContext pc)
 called to release a previously allocated PageContext object. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Object | 
Config.find(PageContext pc,
    String name)
Finds the value associated with a specific configuration setting
 identified by its context initialization parameter name. 
 | 
static Object | 
Config.get(PageContext pc,
   String name,
   int scope)
Looks up a configuration variable in the given scope. 
 | 
static void | 
Config.remove(PageContext pc,
      String name,
      int scope)
Removes a configuration variable from the given scope. 
 | 
static void | 
Config.set(PageContext pc,
   String name,
   Object value,
   int scope)
Sets the value of a configuration variable in the given scope. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static String | 
LocaleSupport.getLocalizedMessage(PageContext pageContext,
                   String key)
Retrieves the localized message corresponding to the given key. 
 | 
static String | 
LocaleSupport.getLocalizedMessage(PageContext pageContext,
                   String key,
                   Object[] args)
Retrieves the localized message corresponding to the given key, and
 performs parametric replacement using the arguments specified via
 args. 
 | 
static String | 
LocaleSupport.getLocalizedMessage(PageContext pageContext,
                   String key,
                   Object[] args,
                   String basename)
Retrieves the localized message corresponding to the given key, and
 performs parametric replacement using the arguments specified via
 args. 
 | 
static String | 
LocaleSupport.getLocalizedMessage(PageContext pageContext,
                   String key,
                   String basename)
Retrieves the localized message corresponding to the given key. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected PageContext | 
TagSupport.pageContext
The PageContext. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
TagSupport.setPageContext(PageContext pageContext)
Set the page context. 
 | 
void | 
TagAdapter.setPageContext(PageContext pc)
Must not be called. 
 | 
void | 
Tag.setPageContext(PageContext pc)
Set the current page context. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Map | 
ImplicitObjects.createApplicationScopeMap(PageContext pContext)
Creates the Map that "wraps" application-scoped attributes 
 | 
static Map | 
ImplicitObjects.createCookieMap(PageContext pContext)
Creates the Map that maps cookie name to the first matching
 Cookie in request.getCookies(). 
 | 
static Map | 
ImplicitObjects.createHeaderMap(PageContext pContext)
Creates the Map that maps header name to single header
 value. 
 | 
static Map | 
ImplicitObjects.createHeadersMap(PageContext pContext)
Creates the Map that maps header name to an array of header
 values. 
 | 
static Map | 
ImplicitObjects.createInitParamMap(PageContext pContext)
Creates the Map that maps init parameter name to single init
 parameter value. 
 | 
static Map | 
ImplicitObjects.createPageScopeMap(PageContext pContext)
Creates the Map that "wraps" page-scoped attributes 
 | 
static Map | 
ImplicitObjects.createParamMap(PageContext pContext)
Creates the Map that maps parameter name to single parameter
 value. 
 | 
static Map | 
ImplicitObjects.createParamsMap(PageContext pContext)
Creates the Map that maps parameter name to an array of parameter
 values. 
 | 
static Map | 
ImplicitObjects.createRequestScopeMap(PageContext pContext)
Creates the Map that "wraps" request-scoped attributes 
 | 
static Map | 
ImplicitObjects.createSessionScopeMap(PageContext pContext)
Creates the Map that "wraps" session-scoped attributes 
 | 
Object | 
Evaluator.evaluate(String pAttributeName,
        String pAttributeValue,
        Class pExpectedType,
        Tag pTag,
        PageContext pPageContext)
Conduit to old-style call for convenience. 
 | 
Object | 
Evaluator.evaluate(String pAttributeName,
        String pAttributeValue,
        Class pExpectedType,
        Tag pTag,
        PageContext pPageContext,
        Map functions,
        String defaultPrefix)
Evaluates the expression at request time 
 | 
static ImplicitObjects | 
ImplicitObjects.getImplicitObjects(PageContext pContext)
Finds the ImplicitObjects associated with the PageContext,
 creating it if it doesn't yet exist. 
 | 
| Constructor and Description | 
|---|
ImplicitObjects(PageContext pContext)
Constructor 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
PageContextImpl
This is a "dummy" implementation of PageContext whose only
 purpose is to serve the attribute getter/setter API's. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Object | 
ExpressionEvaluatorManager.evaluate(String attributeName,
        String expression,
        Class expectedType,
        PageContext pageContext)
Invokes the evaluate() method on the "active" ExpressionEvaluator
 for the given pageContext. 
 | 
static Object | 
ExpressionEvaluatorManager.evaluate(String attributeName,
        String expression,
        Class expectedType,
        Tag tag,
        PageContext pageContext)
Invokes the evaluate() method on the "active" ExpressionEvaluator
 for the given pageContext. 
 | 
Object | 
ExpressionEvaluator.evaluate(String attributeName,
        String expression,
        Class expectedType,
        Tag tag,
        PageContext pageContext)
Evaluates the expression at request time. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static void | 
OutSupport.out(PageContext pageContext,
   boolean escapeXml,
   Object obj)
Outputs text to pageContext's current JspWriter. 
 | 
static String | 
UrlSupport.resolveUrl(String url,
          String context,
          PageContext pageContext)  | 
| Modifier and Type | Method and Description | 
|---|---|
static LocalizationContext | 
BundleSupport.getLocalizationContext(PageContext pc)
Gets the default I18N localization context. 
 | 
static LocalizationContext | 
BundleSupport.getLocalizationContext(PageContext pc,
                      String basename)
Gets the resource bundle with the given base name, whose locale is
 determined as follows:
 Check if a match exists between the ordered set of preferred
 locales and the available locales, for the given base name. 
 | 
| Constructor and Description | 
|---|
JSTLXPathVariableResolver(PageContext pc)  | 
ParseSupport.JstlEntityResolver(PageContext ctx)  | 
XPathUtil(PageContext pc)
Constructs a new XPathUtil object associated with the given
 PageContext. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Object | 
ExpressionUtil.evalNotNull(String tagName,
           String attributeName,
           String expression,
           Class expectedType,
           Tag tag,
           PageContext pageContext)
Evaluates an expression if present, but does not allow the expression
  to evaluate to 'null', throwing a NullAttributeException if it
  does. 
 | 
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.