Uses of Interface
org.apache.tiles.AttributeContext
-
Packages that use AttributeContext Package Description 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.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.
It is useful, for example, when a view item should be built and stored in a particular context (e.g.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 Modifier and Type Class Description classBasicAttributeContextBasic implementation forAttributeContext.classDefinitionA definition, i.e.Methods in org.apache.tiles that return AttributeContext Modifier and Type Method Description AttributeContextTilesContainer. getAttributeContext(org.apache.tiles.request.Request request)Retrive the attribute context of the current request.AttributeContextTilesContainerWrapper. getAttributeContext(org.apache.tiles.request.Request request)AttributeContextTilesContainer. startContext(org.apache.tiles.request.Request request)Starts a new context, where attribute values are stored independently from others.
When the use of the contexts is finished, callTilesContainer.endContext(Request)AttributeContextTilesContainerWrapper. startContext(org.apache.tiles.request.Request request)Methods in org.apache.tiles with parameters of type AttributeContext Modifier and Type Method Description voidAttributeContext. inherit(AttributeContext parent)Copies all missing attributes from theparentattribute context to this one.voidBasicAttributeContext. inherit(AttributeContext parent)Copies all missing attributes from theparentattribute context to this one.voidAttributeContext. inheritCascadedAttributes(AttributeContext parent)Copies the cascaded attributes to this attribute context.voidBasicAttributeContext. inheritCascadedAttributes(AttributeContext context)Copies the cascaded attributes to this attribute context.Constructors in org.apache.tiles with parameters of type AttributeContext Constructor Description 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 Modifier and Type Method Description voidUrlPreparer. execute(org.apache.tiles.request.Request tilesContext, AttributeContext attributeContext)Method associated to a tile and called immediately before the tile is included. -
Uses of AttributeContext in org.apache.tiles.impl
Methods in org.apache.tiles.impl that return AttributeContext Modifier and Type Method Description AttributeContextBasicTilesContainer. getAttributeContext(org.apache.tiles.request.Request request)Retrive the attribute context of the current request.protected AttributeContextBasicTilesContainer. getContext(org.apache.tiles.request.Request tilesContext)Get attribute context from request.protected AttributeContextBasicTilesContainer. popContext(org.apache.tiles.request.Request tilesContext)Pops a context object out of the stack.AttributeContextBasicTilesContainer. startContext(org.apache.tiles.request.Request request)Starts a new context, where attribute values are stored independently from others.
When the use of the contexts is finished, callTilesContainer.endContext(Request)Methods in org.apache.tiles.impl that return types with arguments of type AttributeContext Modifier and Type Method Description protected java.util.Deque<AttributeContext>BasicTilesContainer. getContextStack(org.apache.tiles.request.Request tilesContext)Returns the context stack.Methods in org.apache.tiles.impl with parameters of type AttributeContext Modifier and Type Method Description protected voidBasicTilesContainer. pushContext(AttributeContext context, org.apache.tiles.request.Request tilesContext)Pushes a context object in the stack.protected voidBasicTilesContainer. render(org.apache.tiles.request.Request 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 Modifier and Type Method Description voidViewPreparer. execute(org.apache.tiles.request.Request 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 Modifier and Type Method Description AttributeContextVelocityStyleTilesTool. getAttributeContext()Returns the current attribute context.AttributeContextVelocityStyleTilesTool. 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 Modifier and Type Method Description voidAttributeContextMutator. mutate(AttributeContext context, javax.servlet.ServletRequest request)Mutate aAttributeContext.
-