Class AttributeToken
- java.lang.Object
 - 
- org.apache.tapestry5.ioc.BaseLocatable
 - 
- org.apache.tapestry5.internal.parser.TemplateToken
 - 
- org.apache.tapestry5.internal.parser.AttributeToken
 
 
 
 
- 
- All Implemented Interfaces:
 Locatable,RenderCommand
public class AttributeToken extends TemplateToken implements RenderCommand
Stores an attribute/value pair (as part of an XML element). 
- 
- 
Constructor Summary
Constructors Constructor Description AttributeToken(String namespaceURI, String name, String value, Location location) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrender(MarkupWriter writer, RenderQueue queue)Invoked on an object to request that it render itself.StringtoString()- 
Methods inherited from class org.apache.tapestry5.internal.parser.TemplateToken
getTokenType 
- 
Methods inherited from class org.apache.tapestry5.ioc.BaseLocatable
getLocation 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
AttributeToken
public AttributeToken(String namespaceURI, String name, String value, Location location)
 
 - 
 
- 
Method Detail
- 
render
public void render(MarkupWriter writer, RenderQueue queue)
Description copied from interface:RenderCommandInvoked on an object to request that it render itself. This involves a mix of invoking methods on the writer, and queueing up additional commands (often, representing children of the object that was invoked) to perform additional rendering. In this way, rendering is a tail recursive algorithm, but is not implemented using tail recursion.- Specified by:
 renderin interfaceRenderCommand
 
 - 
 
 -