Uses of Class
org.apache.tapestry5.internal.parser.TemplateToken
-
Packages that use TemplateToken Package Description org.apache.tapestry5.internal.parser [INTERNAL USE ONLY] support classes for component template rendering; API subject to change -
-
Uses of TemplateToken in org.apache.tapestry5.internal.parser
Subclasses of TemplateToken in org.apache.tapestry5.internal.parser Modifier and Type Class Description class
AttributeToken
Stores an attribute/value pair (as part of an XML element).class
BlockToken
A block, used to enclose a chunk of template (including components) and control when or if the content is rendered.class
BodyToken
Placeholder for a component's body (within the component's template).class
CDATAToken
Literal text that was enclosed within a !CDATA in the input template (so we should do the same during output).class
CommentToken
A node representing a comment embedded in the source input.class
DefineNamespacePrefixToken
A token from a template that defines a namespace prefix.class
DTDToken
Represents the presence of a Document Type declaration within a template.class
EndElementToken
Ends a previously started element (including components, parameters, blocks, etc.).class
ExpansionToken
A token containing an expression expansion from the template.class
ExtensionPointToken
A token that represents the replacement of a portion of the template with the content of an extension point, or an override of that extension point.class
ParameterToken
A parameter block to be passed to a component as a parameter.class
StartComponentToken
The start element of a component within the template.class
StartElementToken
The start of an ordinary element within the template (as opposed toStartComponentToken
, which represents an active Tapestry token.class
TextToken
Methods in org.apache.tapestry5.internal.parser that return types with arguments of type TemplateToken Modifier and Type Method Description java.util.List<TemplateToken>
ComponentTemplate. getExtensionPointTokens(java.lang.String extensionPointId)
Returns a list of tokens associated with an extension point, or null if this template neither defines the extension point nor overrides it.java.util.List<TemplateToken>
ComponentTemplateImpl. getExtensionPointTokens(java.lang.String extensionPointId)
java.util.List<TemplateToken>
ComponentTemplate. getTokens()
Returns a list of tokens that were parsed from the template.java.util.List<TemplateToken>
ComponentTemplateImpl. getTokens()
Constructor parameters in org.apache.tapestry5.internal.parser with type arguments of type TemplateToken Constructor Description ComponentTemplateImpl(Resource resource, java.util.List<TemplateToken> tokens, java.util.Map<java.lang.String,Location> componentIds, boolean extension, boolean strictMixinParameters, java.util.Map<java.lang.String,java.util.List<TemplateToken>> overrides)
-