|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Attribute | |
---|---|
org.apache.tiles |
The Tiles taglib and framework allows building web pages by assembling reusable
pieces of pages, called Tiles. |
org.apache.tiles.context | Classes and interfaces that allow to access the various contexts in an application in a uniformed way. |
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.evaluator | Interfaces to manage attribute value evaluation. |
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.renderer | Interfaces to manage attribute rendering. |
org.apache.tiles.renderer.impl | Default implementations to manage attribute rendering. |
Uses of Attribute in org.apache.tiles |
---|
Subclasses of Attribute in org.apache.tiles | |
---|---|
class |
ListAttribute
An attribute as a List . |
Fields in org.apache.tiles declared as Attribute | |
---|---|
protected Attribute |
BasicAttributeContext.templateAttribute
The template attribute, to render a template. |
Fields in org.apache.tiles with type parameters of type Attribute | |
---|---|
protected Map<String,Attribute> |
BasicAttributeContext.attributes
Template attributes. |
protected Map<String,Attribute> |
BasicAttributeContext.cascadedAttributes
Cascaded template attributes. |
Methods in org.apache.tiles that return Attribute | |
---|---|
Attribute |
Attribute.clone()
|
static Attribute |
Attribute.createTemplateAttribute(String template)
Creates a template attribute, starting from the name of the template. |
static Attribute |
Attribute.createTemplateAttributeWithExpression(String templateExpression)
Creates a template attribute, starting from the expression to evaluate to obtain the template. |
Attribute |
BasicAttributeContext.getAttribute(String name)
Retrieve the named attribute, either cascaded or not. |
Attribute |
AttributeContext.getAttribute(String name)
Retrieve the named attribute, either cascaded or not. |
Attribute |
BasicAttributeContext.getCascadedAttribute(String name)
Retrieve the attribute that has been cascaded at upper levels. |
Attribute |
AttributeContext.getCascadedAttribute(String name)
Retrieve the attribute that has been cascaded at upper levels. |
Attribute |
BasicAttributeContext.getLocalAttribute(String name)
Retrieve the attribute that has been defined in this context (i.e. not cascaded). |
Attribute |
AttributeContext.getLocalAttribute(String name)
Retrieve the attribute that has been defined in this context (i.e. not cascaded). |
Attribute |
BasicAttributeContext.getTemplateAttribute()
Returns the attribute that will be used to render a template. |
Attribute |
AttributeContext.getTemplateAttribute()
Returns the attribute that will be used to render a template. |
Methods in org.apache.tiles that return types with arguments of type Attribute | |
---|---|
Map<String,Attribute> |
Definition.getAttributes()
Deprecated. Use AttributeContext.getLocalAttributeNames() and
AttributeContext.getCascadedAttributeNames() . |
Methods in org.apache.tiles with parameters of type Attribute | |
---|---|
void |
ListAttribute.add(Attribute element)
Add an element in list. |
void |
Definition.addAttribute(Attribute attribute)
Deprecated. Use BasicAttributeContext.putAttribute(String, Attribute) . |
Object |
TilesContainer.evaluate(Attribute attribute,
Object... requestItems)
Evaluates the given attribute. |
void |
Attribute.inherit(Attribute attribute)
Inherits an attribute, i.e. overwrites null properties with the ones provided by the attribute. |
void |
BasicAttributeContext.putAttribute(String name,
Attribute value)
Add the specified attribute. |
void |
AttributeContext.putAttribute(String name,
Attribute value)
Add the specified attribute. |
void |
BasicAttributeContext.putAttribute(String name,
Attribute value,
boolean cascade)
Add the specified attribute. |
void |
AttributeContext.putAttribute(String name,
Attribute value,
boolean cascade)
Add the specified attribute. |
void |
TilesContainer.render(Attribute attribute,
Object... requestItems)
Render the given Attribute. |
void |
TilesContainer.render(Attribute attribute,
Writer writer,
Object... requestItems)
Deprecated. Use TilesContainer.render(Attribute, Object...) . |
void |
BasicAttributeContext.setTemplateAttribute(Attribute templateAttribute)
Sets the template attribute, that will be used to render the template page. |
void |
AttributeContext.setTemplateAttribute(Attribute templateAttribute)
Sets the template attribute, that will be used to render the template page. |
Method parameters in org.apache.tiles with type arguments of type Attribute | |
---|---|
void |
BasicAttributeContext.addAll(Map<String,Attribute> newAttributes)
Add all attributes to this context. |
void |
AttributeContext.addAll(Map<String,Attribute> newAttributes)
Add all attributes to the context. |
void |
BasicAttributeContext.addMissing(Map<String,Attribute> defaultAttributes)
Add all missing attributes to this context. |
void |
AttributeContext.addMissing(Map<String,Attribute> defaultAttributes)
Add all attributes to the context. |
Constructors in org.apache.tiles with parameters of type Attribute | |
---|---|
Attribute(Attribute attribute)
Copy constructor. |
|
Definition(String name,
Attribute templateAttribute,
Map<String,Attribute> attributes)
Constructor. |
Constructor parameters in org.apache.tiles with type arguments of type Attribute | |
---|---|
BasicAttributeContext(Map<String,Attribute> attributes)
Constructor. |
|
Definition(String name,
Attribute templateAttribute,
Map<String,Attribute> attributes)
Constructor. |
|
Definition(String name,
String template,
Map<String,Attribute> attributes)
Deprecated. Use Definition.Definition(String, Attribute, Map) . |
Uses of Attribute in org.apache.tiles.context |
---|
Constructor parameters in org.apache.tiles.context with type arguments of type Attribute | |
---|---|
BasicAttributeContext(Map<String,Attribute> attributes)
Deprecated. Constructor. |
Uses of Attribute in org.apache.tiles.definition |
---|
Methods in org.apache.tiles.definition with parameters of type Attribute | |
---|---|
protected Definition |
DefinitionsImpl.getDefinitionByAttribute(Attribute attr,
Locale locale)
Deprecated. Searches for a definition specified as an attribute. |
Uses of Attribute in org.apache.tiles.evaluator |
---|
Methods in org.apache.tiles.evaluator with parameters of type Attribute | |
---|---|
Object |
AttributeEvaluator.evaluate(Attribute attribute,
TilesRequestContext request)
Evaluates an attribute value. |
Object |
AbstractAttributeEvaluator.evaluate(Attribute attribute,
TilesRequestContext request)
Evaluates an attribute value. |
Uses of Attribute in org.apache.tiles.impl |
---|
Methods in org.apache.tiles.impl with parameters of type Attribute | |
---|---|
Object |
BasicTilesContainer.evaluate(Attribute attribute,
Object... requestItems)
Evaluates the given attribute. |
void |
BasicTilesContainer.render(Attribute attr,
Object... requestItems)
Render the given Attribute. |
void |
BasicTilesContainer.render(Attribute attr,
Writer writer,
Object... requestItems)
Deprecated. |
Uses of Attribute in org.apache.tiles.jsp.taglib |
---|
Fields in org.apache.tiles.jsp.taglib declared as Attribute | |
---|---|
protected Attribute |
InsertAttributeTag.attribute
The evaluated attribute. |
protected Attribute |
AttributeTagSupport.attribute
The found attribute. |
Methods in org.apache.tiles.jsp.taglib that return types with arguments of type Attribute | |
---|---|
List<Attribute> |
AddListAttributeTag.getAttributes()
Get list defined in tag. |
List<Attribute> |
PutListAttributeTag.getAttributes()
Get list defined in tag. |
Methods in org.apache.tiles.jsp.taglib with parameters of type Attribute | |
---|---|
protected void |
GetAsStringTag.render(Attribute attr)
Renders an attribute for real. |
protected void |
InsertAttributeTag.render(Attribute attr)
Renders an attribute for real. |
Uses of Attribute in org.apache.tiles.renderer |
---|
Methods in org.apache.tiles.renderer with parameters of type Attribute | |
---|---|
void |
AttributeRenderer.render(Attribute attribute,
TilesRequestContext request)
Renders an attribute. |
Uses of Attribute in org.apache.tiles.renderer.impl |
---|
Methods in org.apache.tiles.renderer.impl with parameters of type Attribute | |
---|---|
void |
AbstractBaseAttributeRenderer.render(Attribute attribute,
TilesRequestContext request)
Renders an attribute. |
void |
UntypedAttributeRenderer.write(Object value,
Attribute attribute,
TilesRequestContext request)
Implement this method knowing that the attribute won't be null and it will be authorized. |
void |
StringAttributeRenderer.write(Object value,
Attribute attribute,
TilesRequestContext request)
Implement this method knowing that the attribute won't be null and it will be authorized. |
void |
TemplateAttributeRenderer.write(Object value,
Attribute attribute,
TilesRequestContext request)
Implement this method knowing that the attribute won't be null and it will be authorized. |
abstract void |
AbstractBaseAttributeRenderer.write(Object value,
Attribute attribute,
TilesRequestContext request)
Implement this method knowing that the attribute won't be null and it will be authorized. |
void |
DefinitionAttributeRenderer.write(Object value,
Attribute attribute,
TilesRequestContext request)
Implement this method knowing that the attribute won't be null and it will be authorized. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |