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

Uses of Interface
org.apache.tiles.AttributeContext

Packages that use AttributeContext
org.apache.tiles
The Tiles taglib and framework allows building web pages by assembling reusable pieces of pages, called Tiles. 
org.apache.tiles.compat.preparer "View preparers" are objects that allows the "preparation" of a Tiles artifact (definition, template or attribute) before it is rendered. 
org.apache.tiles.context Classes and interfaces that allow to access the various contexts in an application in a uniformed way. 
org.apache.tiles.impl It contains the basic implementations of Tiles container. 
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.velocity.template Classes that allow the use of "Tiles template" as a Velocity tool. 
org.apache.tiles.web.util Utility classes to use Tiles in a servlet environment. 
 

Uses of AttributeContext in org.apache.tiles
 

Classes in org.apache.tiles that implement AttributeContext
 class BasicAttributeContext
          Basic implementation for AttributeContext.
 class Definition
          A definition, i.e. a template with (completely or not) filled attributes.
 

Methods in org.apache.tiles that return AttributeContext
 AttributeContext TilesContainer.getAttributeContext(Object... requestItems)
          Retrive the attribute context of the current request.
 AttributeContext TilesContainer.startContext(Object... requestItems)
          Starts a new context, where attribute values are stored independently from others.
 

Methods in org.apache.tiles with parameters of type AttributeContext
 void BasicAttributeContext.inherit(AttributeContext parent)
          Copies all missing attributes from the parent attribute context to this one.
 void AttributeContext.inherit(AttributeContext parent)
          Copies all missing attributes from the parent attribute context to this one.
 void BasicAttributeContext.inheritCascadedAttributes(AttributeContext context)
          Copies the cascaded attributes to this attribute context.
 void AttributeContext.inheritCascadedAttributes(AttributeContext parent)
          Copies the cascaded attributes to this attribute context.
 

Constructors in org.apache.tiles with parameters of type AttributeContext
BasicAttributeContext(AttributeContext context)
          Copy constructor.
 

Uses of AttributeContext in org.apache.tiles.compat.preparer
 

Methods in org.apache.tiles.compat.preparer with parameters of type AttributeContext
 void UrlPreparer.execute(TilesRequestContext tilesContext, AttributeContext attributeContext)
          Method associated to a tile and called immediately before the tile is included.
 

Uses of AttributeContext in org.apache.tiles.context
 

Methods in org.apache.tiles.context that return AttributeContext
static AttributeContext BasicAttributeContext.getContext(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer.getAttributeContext(Object...).
static AttributeContext BasicAttributeContext.popContext(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer.endContext(Object...).
 

Methods in org.apache.tiles.context that return types with arguments of type AttributeContext
static Stack<AttributeContext> BasicAttributeContext.getContextStack(TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer.getAttributeContext(Object...), TilesContainer.startContext(Object...) or TilesContainer.endContext(Object...).
 

Methods in org.apache.tiles.context with parameters of type AttributeContext
static void BasicAttributeContext.pushContext(AttributeContext context, TilesRequestContext tilesContext)
          Deprecated. Use TilesContainer.startContext(Object...).
 

Constructors in org.apache.tiles.context with parameters of type AttributeContext
BasicAttributeContext(AttributeContext context)
          Deprecated. Copy constructor.
 

Uses of AttributeContext in org.apache.tiles.impl
 

Methods in org.apache.tiles.impl that return AttributeContext
 AttributeContext BasicTilesContainer.getAttributeContext(Object... requestItems)
          Retrive the attribute context of the current request.
protected  AttributeContext BasicTilesContainer.getContext(TilesRequestContext tilesContext)
          Get attribute context from request.
protected  AttributeContext BasicTilesContainer.popContext(TilesRequestContext tilesContext)
          Pops a context object out of the stack.
 AttributeContext BasicTilesContainer.startContext(Object... requestItems)
          Starts a new context, where attribute values are stored independently from others.
 

Methods in org.apache.tiles.impl that return types with arguments of type AttributeContext
protected  ArrayStack<AttributeContext> BasicTilesContainer.getContextStack(TilesRequestContext tilesContext)
          Returns the context stack.
 

Methods in org.apache.tiles.impl with parameters of type AttributeContext
protected  void BasicTilesContainer.pushContext(AttributeContext context, TilesRequestContext tilesContext)
          Pushes a context object in the stack.
protected  void BasicTilesContainer.render(TilesRequestContext request, AttributeContext attributeContext)
          Renders the specified attribute context.
 

Uses of AttributeContext in org.apache.tiles.preparer
 

Methods in org.apache.tiles.preparer with parameters of type AttributeContext
 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.
 

Uses of AttributeContext in org.apache.tiles.velocity.template
 

Methods in org.apache.tiles.velocity.template that return AttributeContext
 AttributeContext VelocityStyleTilesTool.getAttributeContext()
          Returns the current attribute context.
 AttributeContext VelocityStyleTilesTool.startAttributeContext()
          Starts the attribute context.
 

Uses of AttributeContext in org.apache.tiles.web.util
 

Methods in org.apache.tiles.web.util with parameters of type AttributeContext
 void AttributeContextMutator.mutate(AttributeContext context, ServletRequest request)
          Mutate a AttributeContext.
 



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