This project has retired. For details please refer to its Attic page.
Uses of Interface org.apache.tiles.context.TilesRequestContext (Tiles 2 2.0.7 API)

Uses of Interface
org.apache.tiles.context.TilesRequestContext

Packages that use TilesRequestContext
org.apache.tiles.context Classes and interfaces that allow to access the various contexts in an application in a uniformed way. 
org.apache.tiles.context.enhanced Classes and interfaces that allow to access the various contexts using also the classpath to access resources. 
org.apache.tiles.definition It contains classes and interfaces to allow manipulations of "definitions", i.e. objects made of a template page and a number of filled attributes. 
org.apache.tiles.impl It contains the basic implementations of Tiles container. 
org.apache.tiles.impl.mgmt It contains the basic implementations of mutable Tiles containers. 
org.apache.tiles.jsp.context Tiles context classes in a JSP environment. 
org.apache.tiles.locale Classes and interfaces to allow locale resolution in an application, i.e. it allows to specify how to access the locale that the user wants to use. 
org.apache.tiles.locale.impl Basic implementation of the locale resolver. 
org.apache.tiles.portlet.context Classes and interfaces that allow to access the various contexts from a portlet application. 
org.apache.tiles.preparer "View preparers" are objects that allows the "preparation" of a Tiles artifact (definition, template or attribute) before it is rendered. 
org.apache.tiles.servlet.context Classes and interfaces that allow to access the various contexts from a servlet application. 
 

Uses of TilesRequestContext in org.apache.tiles.context
 

Classes in org.apache.tiles.context that implement TilesRequestContext
 class TilesRequestContextWrapper
          Delegate for ease of customization.
 

Methods in org.apache.tiles.context that return TilesRequestContext
 TilesRequestContext ChainedTilesContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 TilesRequestContext TilesContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 

Methods in org.apache.tiles.context with parameters of type TilesRequestContext
static AttributeContext BasicAttributeContext.getContext(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer#getAttributeContext(Object...).
static Stack<AttributeContext> BasicAttributeContext.getContextStack(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer#getAttributeContext(Object...), TilesContainer#startContext(Object...) or TilesContainer#endContext(Object...).
static AttributeContext BasicAttributeContext.popContext(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer#endContext(Object...).
static void BasicAttributeContext.pushContext(AttributeContext context, TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer#startContext(Object...).
 

Constructors in org.apache.tiles.context with parameters of type TilesRequestContext
TilesRequestContextWrapper(TilesRequestContext context)
          Constructor.
 

Uses of TilesRequestContext in org.apache.tiles.context.enhanced
 

Methods in org.apache.tiles.context.enhanced that return TilesRequestContext
 TilesRequestContext EnhancedContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 

Uses of TilesRequestContext in org.apache.tiles.definition
 

Methods in org.apache.tiles.definition with parameters of type TilesRequestContext
protected  void UrlDefinitionsFactory.addDefinitions(Definitions definitions, TilesRequestContext tilesContext)
          Appends locale-specific Definition objects to an existing Definitions set by reading locale-specific versions of the applied sources.
 Definition DefinitionsFactory.getDefinition(String name, TilesRequestContext tilesContext)
          Returns a Definition object that matches the given name and Tiles context.
 Definition UrlDefinitionsFactory.getDefinition(String name, TilesRequestContext tilesContext)
          Returns a Definition object that matches the given name and Tiles context.
protected  boolean UrlDefinitionsFactory.isContextProcessed(TilesRequestContext tilesContext)
          Indicates whether a given context has been processed or not.
 

Uses of TilesRequestContext in org.apache.tiles.impl
 

Methods in org.apache.tiles.impl with parameters of type TilesRequestContext
protected  AttributeContext BasicTilesContainer.getContext(TilesRequestContext tilesContext)
          Get attribute context from request.
protected  Stack<AttributeContext> BasicTilesContainer.getContextStack(TilesRequestContext tilesContext)
          Returns the context stack.
protected  Definition KeyedDefinitionsFactoryTilesContainer.getDefinition(String definitionName, TilesRequestContext request)
          Returns a definition specifying its name.
protected  Definition BasicTilesContainer.getDefinition(String definitionName, TilesRequestContext request)
          Returns a definition specifying its name.
protected  String KeyedDefinitionsFactoryTilesContainer.getDefinitionsFactoryKey(TilesRequestContext request)
          Returns the definitions factory key.
 String KeyedDefinitionsFactoryTilesContainer.KeyExtractor.getDefinitionsFactoryKey(TilesRequestContext request)
          Returns the definitions factory key.
 String KeyedDefinitionsFactoryTilesContainer.DefaultKeyExtractor.getDefinitionsFactoryKey(TilesRequestContext request)
          Returns the definitions factory key.
protected  AttributeContext BasicTilesContainer.popContext(TilesRequestContext tilesContext)
          Pops a context object out of the stack.
protected  void BasicTilesContainer.pushContext(AttributeContext context, TilesRequestContext tilesContext)
          Pushes a context object in the stack.
 

Uses of TilesRequestContext in org.apache.tiles.impl.mgmt
 

Methods in org.apache.tiles.impl.mgmt with parameters of type TilesRequestContext
 void DefinitionManager.addDefinition(Definition definition, TilesRequestContext request)
          Adds a definition to the set of custom ones.
 Definition DefinitionManager.getDefinition(String definition, TilesRequestContext request)
          Returns a definition by name.
protected  Definition CachingKeyedDefinitionsFactoryTilesContainer.getDefinition(String definition, TilesRequestContext context)
          Returns a definition specifying its name.
protected  Definition CachingTilesContainer.getDefinition(String definition, TilesRequestContext context)
          Returns a definition specifying its name.
protected  Map<String,Definition> DefinitionManager.getDefinitions(TilesRequestContext request)
          Returns the map with custom definitions for the current request.
protected  Map<String,Definition> DefinitionManager.getOrCreateDefinitions(TilesRequestContext request)
          Returns a map of type "definition name -> definition" and, if it has not been defined before, creates one.
protected  void CachingKeyedDefinitionsFactoryTilesContainer.register(Definition definition, TilesRequestContext request)
          Registers a custom definition.
protected  void CachingTilesContainer.register(Definition definition, TilesRequestContext request)
          Registers a custom definition.
protected  void DefinitionManager.resolveInheritance(Definition definition, TilesRequestContext request)
          Resolve inheritance.
 

Uses of TilesRequestContext in org.apache.tiles.jsp.context
 

Classes in org.apache.tiles.jsp.context that implement TilesRequestContext
 class JspTilesRequestContext
          Context implementation used for executing tiles within a jsp tag library.
 

Methods in org.apache.tiles.jsp.context that return TilesRequestContext
 TilesRequestContext JspTilesContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 

Uses of TilesRequestContext in org.apache.tiles.locale
 

Methods in org.apache.tiles.locale with parameters of type TilesRequestContext
 Locale LocaleResolver.resolveLocale(TilesRequestContext request)
          Resolves the locale.
 

Uses of TilesRequestContext in org.apache.tiles.locale.impl
 

Methods in org.apache.tiles.locale.impl with parameters of type TilesRequestContext
 Locale DefaultLocaleResolver.resolveLocale(TilesRequestContext request)
          Resolves the locale.
 

Uses of TilesRequestContext in org.apache.tiles.portlet.context
 

Classes in org.apache.tiles.portlet.context that implement TilesRequestContext
 class PortletTilesRequestContext
          Portlet-based TilesApplicationContext implementation.
 

Methods in org.apache.tiles.portlet.context that return TilesRequestContext
 TilesRequestContext PortletTilesApplicationContext.createRequestContext(Object request, Object response)
          Creates a portlet context for a given request/response pair.
 TilesRequestContext PortletTilesContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 

Uses of TilesRequestContext in org.apache.tiles.preparer
 

Methods in org.apache.tiles.preparer with parameters of type TilesRequestContext
 void ViewPreparer.execute(TilesRequestContext tilesContext, AttributeContext attributeContext)
          Method associated to a tile and called immediately before the tile is included.
 void ViewPreparerSupport.execute(TilesRequestContext tilesContext, AttributeContext attributeContext)
          Method associated to a tile and called immediately before the tile is included.
 ViewPreparer BasicPreparerFactory.getPreparer(String name, TilesRequestContext context)
          Create a new instance of the named preparerInstance.
 ViewPreparer PreparerFactory.getPreparer(String name, TilesRequestContext context)
          Create the named {link ViewPreparer} for the specified context.
 

Uses of TilesRequestContext in org.apache.tiles.servlet.context
 

Classes in org.apache.tiles.servlet.context that implement TilesRequestContext
 class ServletTilesRequestContext
          Servlet-based implementation of the TilesApplicationContext interface.
 

Methods in org.apache.tiles.servlet.context that return TilesRequestContext
 TilesRequestContext ServletTilesApplicationContext.createRequestContext(Object request, Object response)
          Creates a servlet context for a given request/response pair.
 TilesRequestContext ServletTilesContextFactory.createRequestContext(TilesApplicationContext context, Object... requestItems)
          Create a TilesRequestContext for the given context, request, and response.
 



Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.