org.apache.tapestry.internal.parser |
Classes related to parsing of Tapestry component templates.
|
Java Source File Name | Type | Comment |
AttributeToken.java | Class | Stores an attribute/value pair (as part of an XML element). |
BlockToken.java | Class | A block, used to enclose a chunk of template (including components) and control when or if the
content is rendered. |
BodyToken.java | Class | Placeholder for a component's body (within the component's template). |
CDATAToken.java | Class | Literal text that was enclosed within a !CDATA in the input template (so we should do the same
during output). |
CommentToken.java | Class | A node representing a comment embedded in the source input. |
ComponentTemplate.java | Interface | A parsed component template, containing all the tokens parsed from the template. |
ComponentTemplateImpl.java | Class | |
DTDToken.java | Class | Represents the presence of a Document Type declaration within a template. |
EndElementToken.java | Class | Ends a previously started element (including components, parameters, blocks, etc.). |
ExpansionToken.java | Class | A token containing an expression expansion from the template. |
ParameterToken.java | Class | A parameter block to be passed to a component as a parameter. |
StartComponentToken.java | Class | The start element of a component within the template. |
StartElementToken.java | Class | The start of an ordinary element within the template (as opposed to
org.apache.tapestry.internal.parser.StartComponentToken , which represents an active
Tapestry token. |
TemplateToken.java | Class | Base class for tokens parsed out of a template. |
TextToken.java | Class | |
TokenType.java | enum | Defines the different types of
org.apache.tapestry.internal.parser.TemplateToken s. |