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.access |
Tiles access package.
|
org.apache.tiles.awareness |
Interfaces that let the Tiles engine to inject dependencies to its objects.
|
org.apache.tiles.extras.complete |
These classes allow to start up Tiles with all features on.
|
org.apache.tiles.factory |
Factory classes, to allow creation of container instances.
|
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.mgmt |
Classes and interfaces to be used when it is needed to create Tiles definitions
during the execution of the application.
|
org.apache.tiles.renderer |
Interfaces to manage attribute rendering.
|
org.apache.tiles.startup |
Classes to start the Tiles engine up.
|
org.apache.tiles.template |
Tiles template classes, that enable to write support code for template languages (JSP, FreeMarker, Velocity).
|
Modifier and Type | Class and Description |
---|---|
class |
TilesContainerWrapper
Wraps a Tiles container to allow easy decoration.
|
Modifier and Type | Field and Description |
---|---|
protected TilesContainer |
TilesContainerWrapper.container
The container to wrap.
|
Modifier and Type | Method and Description |
---|---|
TilesContainer |
TilesContainerWrapper.getWrappedContainer()
Returns the wrapped container.
|
Constructor and Description |
---|
TilesContainerWrapper(TilesContainer container)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
static TilesContainer |
TilesAccess.getContainer(org.apache.tiles.request.ApplicationContext context)
Returns default the container to be used in the application.
|
static TilesContainer |
TilesAccess.getContainer(org.apache.tiles.request.ApplicationContext context,
String key)
Returns the container to be used in the application registered under a specific key.
|
static TilesContainer |
TilesAccess.getCurrentContainer(org.apache.tiles.request.Request request)
Returns the current container that has been set, or the default one.
|
Modifier and Type | Method and Description |
---|---|
static void |
TilesAccess.setContainer(org.apache.tiles.request.ApplicationContext context,
TilesContainer container)
Configures the default container to be used in the application.
|
static void |
TilesAccess.setContainer(org.apache.tiles.request.ApplicationContext context,
TilesContainer container,
String key)
Configures the container to be used in the application.
|
static void |
TilesAccess.setCurrentContainer(org.apache.tiles.request.Request request,
TilesContainer container)
Sets the current container to use in web pages.
|
Modifier and Type | Method and Description |
---|---|
void |
TilesContainerAware.setContainer(TilesContainer container)
Sets the Tiles container.
|
Modifier and Type | Method and Description |
---|---|
TilesContainer |
CompleteAutoloadTilesContainerFactory.createDecoratedContainer(TilesContainer originalContainer,
org.apache.tiles.request.ApplicationContext applicationContext)
Instantiate the container that will be injected to child objects.
|
Modifier and Type | Method and Description |
---|---|
TilesContainer |
CompleteAutoloadTilesContainerFactory.createDecoratedContainer(TilesContainer originalContainer,
org.apache.tiles.request.ApplicationContext applicationContext)
Instantiate the container that will be injected to child objects.
|
protected org.apache.tiles.request.render.Renderer |
CompleteAutoloadTilesContainerFactory.createDefaultAttributeRenderer(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates the default attribute renderer.
|
protected void |
CompleteAutoloadTilesContainerFactory.registerAttributeRenderers(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Registers attribute renderers in a
BasicRendererFactory . |
Modifier and Type | Method and Description |
---|---|
abstract TilesContainer |
AbstractTilesContainerFactory.createContainer(org.apache.tiles.request.ApplicationContext applicationContext)
Creates a Tiles container.
|
TilesContainer |
BasicTilesContainerFactory.createContainer(org.apache.tiles.request.ApplicationContext applicationContext)
Creates a Tiles container.
|
protected TilesContainer |
BasicTilesContainerFactory.createDecoratedContainer(TilesContainer originalContainer,
org.apache.tiles.request.ApplicationContext context)
Instantiate the container that will be injected to child objects.
|
Modifier and Type | Method and Description |
---|---|
protected TilesContainer |
BasicTilesContainerFactory.createDecoratedContainer(TilesContainer originalContainer,
org.apache.tiles.request.ApplicationContext context)
Instantiate the container that will be injected to child objects.
|
protected org.apache.tiles.request.render.Renderer |
BasicTilesContainerFactory.createDefaultAttributeRenderer(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates the default attribute renderer.
|
protected org.apache.tiles.request.render.Renderer |
BasicTilesContainerFactory.createDefinitionAttributeRenderer(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates a
AttributeRenderer using a DefinitionRenderer . |
protected org.apache.tiles.request.render.RendererFactory |
BasicTilesContainerFactory.createRendererFactory(org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates a renderer factory.
|
protected org.apache.tiles.request.render.Renderer |
BasicTilesContainerFactory.createStringAttributeRenderer(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates an attribute renderer to render strings.
|
protected org.apache.tiles.request.render.Renderer |
BasicTilesContainerFactory.createTemplateAttributeRenderer(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Creates a
AttributeRenderer that uses a DispatchRenderer . |
protected void |
BasicTilesContainerFactory.registerAttributeRenderers(org.apache.tiles.request.render.BasicRendererFactory rendererFactory,
org.apache.tiles.request.ApplicationContext applicationContext,
TilesContainer container,
AttributeEvaluatorFactory attributeEvaluatorFactory)
Registers attribute renderers in a
BasicRendererFactory . |
Modifier and Type | Class and Description |
---|---|
class |
BasicTilesContainer
Basic implementation of the tiles container interface.
|
Modifier and Type | Class and Description |
---|---|
class |
CachingTilesContainer
Manages custom and configured definitions, so they can be used by the
container, instead of using a simple
DefinitionsFactory . |
Constructor and Description |
---|
CachingTilesContainer(TilesContainer originalContainer)
Constructor.
|
CachingTilesContainer(TilesContainer originalContainer,
String definitionsAttributeName)
Constructor.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MutableTilesContainer
Defines a mutable version of the TilesContainer.
|
Constructor and Description |
---|
DefinitionRenderer(TilesContainer container)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
protected TilesContainer |
AbstractTilesInitializer.createContainer(org.apache.tiles.request.ApplicationContext context)
Creates a Tiles container.
|
Modifier and Type | Method and Description |
---|---|
Attribute |
DefaultAttributeResolver.computeAttribute(TilesContainer container,
Attribute attribute,
String name,
String role,
boolean ignore,
Object defaultValue,
String defaultValueRole,
String defaultValueType,
org.apache.tiles.request.Request request)
Computes the attribute.
|
Attribute |
AttributeResolver.computeAttribute(TilesContainer container,
Attribute attribute,
String name,
String role,
boolean ignore,
Object defaultValue,
String defaultValueRole,
String defaultValueType,
org.apache.tiles.request.Request request)
Computes the attribute.
|
Copyright © 2001-2017 The Apache Software Foundation. All Rights Reserved.