Class BlockToken
- java.lang.Object
 - 
- org.apache.tapestry5.ioc.BaseLocatable
 - 
- org.apache.tapestry5.internal.parser.TemplateToken
 - 
- org.apache.tapestry5.internal.parser.BlockToken
 
 
 
 
- 
- All Implemented Interfaces:
 Locatable
public class BlockToken extends TemplateToken
A block, used to enclose a chunk of template (including components) and control when or if the content is rendered. 
- 
- 
Constructor Summary
Constructors Constructor Description BlockToken(String id, Location location) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Returns the block's template-unique id, or null if the block element did not specify an id.StringtoString()- 
Methods inherited from class org.apache.tapestry5.internal.parser.TemplateToken
getTokenType 
- 
Methods inherited from class org.apache.tapestry5.ioc.BaseLocatable
getLocation 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
BlockToken
public BlockToken(String id, Location location)
- Parameters:
 id- the id of the block, or null for an anonymous blocklocation- of the block element
 
 - 
 
 -