This project has retired. For details please refer to its Attic page.
Uses of Class org.apache.tiles.Attribute (Tiles 2 2.0.7 API)

Uses of Class
org.apache.tiles.Attribute

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.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. 
 

Uses of Attribute in org.apache.tiles
 

Fields in org.apache.tiles with type parameters of type Attribute
protected  Map<String,Attribute> Definition.attributes
          Attributes defined for the definition.
 

Methods in org.apache.tiles that return Attribute
 Attribute AttributeContext.getAttribute(String name)
          Retrieve the named attribute.
 Attribute Definition.getAttribute(String key)
          Returns the attribute for the given name, or null if no attribute of the given name exists.
 

Methods in org.apache.tiles that return types with arguments of type Attribute
 Map<String,Attribute> Definition.getAttributes()
          Access method for the attributes property.
 

Methods in org.apache.tiles with parameters of type Attribute
 void Definition.addAttribute(Attribute attribute)
          Deprecated. Use Definition.putAttribute(String, Attribute).
 void AttributeContext.putAttribute(String name, Attribute value)
          Add the specified attribute.
 void Definition.putAttribute(String key, Attribute value)
          Put a new attribute in this definition.
 void TilesContainer.render(Attribute attribute, Writer writer, Object... requestItems)
          Render the given Attribute.
 

Method parameters in org.apache.tiles with type arguments of type Attribute
 void AttributeContext.addAll(Map<String,Attribute> newAttributes)
          Add all attributes to the 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.
 

Constructor parameters in org.apache.tiles with type arguments of type Attribute
Definition(String name, String template, Map<String,Attribute> attributes)
          Constructor.
 

Uses of Attribute in org.apache.tiles.context
 

Subclasses of Attribute in org.apache.tiles.context
 class ListAttribute
          An attribute as a List.
 

Methods in org.apache.tiles.context that return Attribute
 Attribute BasicAttributeContext.getAttribute(String name)
          Get an attribute from context.
 

Methods in org.apache.tiles.context with parameters of type Attribute
 void ListAttribute.add(Attribute element)
          Add an element in list.
 void BasicAttributeContext.putAttribute(String name, Attribute value)
          Put a new attribute to context.
 

Method parameters in org.apache.tiles.context with type arguments of type Attribute
 void BasicAttributeContext.addAll(Map<String,Attribute> newAttributes)
          Add all attributes to this context.
 void BasicAttributeContext.addMissing(Map<String,Attribute> defaultAttributes)
          Add all missing attributes to this context.
 

Constructor parameters in org.apache.tiles.context with type arguments of type Attribute
BasicAttributeContext(Map<String,Attribute> attributes)
          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)
          Searches for a definition specified as an attribute.
 

Uses of Attribute in org.apache.tiles.impl
 

Methods in org.apache.tiles.impl with parameters of type Attribute
 void BasicTilesContainer.render(Attribute attr, Writer writer, Object... requestItems)
          Render the given Attribute.
 

Uses of Attribute in org.apache.tiles.jsp.taglib
 

Fields in org.apache.tiles.jsp.taglib declared as 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> PutListAttributeTag.getAttributes()
          Get list defined in tag.
 List<Attribute> AddListAttributeTag.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.
 



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