Tokens Classes, Controls, and VIs
Owning Palette: Advanced Classes, Controls, and VIs
Requires: Labstache
The Tokens project library contains all tokens that can be extracted and identified during the lexing process.
Library Item | Description |
---|---|
BeginSection | The Begin Section class represents a Begin Section Mustache tag as a token. |
Comment | The Comment class represents a Comment Mustache tag as a token. |
Contentable | The Contentable class provides an interface, or Application Programming Interface (API), for any token that can have content. Objects of this class should not be directly created. Instead, a new class that inherents from the Contentable class should be created. |
EndSection | The End Section class represents an End Section Mustache tag as a token. |
EscapedVariable | The Escaped Variable class represents an Escaped Variable Mustache tag as a token. |
InvertedSection | The Inverted Section class represents an Inverted Section Mustache tag as a token. |
Keyable | The Keyable class provides an interface, or Application Programming Interface (API), for any token that can have a key, or unique identifier. Objects of this class should not be directly created. Instead, a new class that inherents from the Keyable class should be created. |
Partial | The Partial class represents a Partial Mustache tag as a token. |
SetDelimiter | The Set Delimiter class represents a Set Delimiter Mustache tag as a token. |
Text | The Text class represents a block of text with no Mustache tags. |
Token | The Token class is the abstract base class for all tokens that can be extracted and identified during the lexing process. Objects of this class should not be directly created. Instead, a new class that inherents from the Token class should be created. |
UnescapedVariable | The Unescaped Variable class represents an Unescaped Variable Mustache tag as a token. |