This project has retired. For details please refer to its Attic page.
Uses of Interface org.apache.tiles.AttributeContext (Tiles 2 2.1.4 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.jsp.taglib The "tiles-jsp" tag library contains tags that are useful to create templates, subpages other reusable view parts using the "tiles-core" package. 
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.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  Stack<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.jsp.taglib
 

Fields in org.apache.tiles.jsp.taglib declared as AttributeContext
protected  AttributeContext RenderTag.attributeContext
          The attribute context to use to store and read attribute values.
protected  AttributeContext ContainerTagSupport.attributeContext
          Deprecated. The attribute context to use to store and read attribute values.
protected  AttributeContext AttributeTagSupport.attributeContext
          The current 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.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-2009 Apache Software Foundation. All Rights Reserved.