Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.


 ClassPackageDescription
 ANTLRFileStream
org.antlr.runtime 
 ANTLRStringStream
org.antlr.runtime 
 BaseRecognizer
org.antlr.runtime A generic recognizer that can handle recognizers generated from lexer, parser, and tree grammars.
 BaseTree
org.antlr.runtime.tree A generic tree implementation with no payload.
 BaseTreeAdaptor
org.antlr.runtime.tree A TreeAdaptor that works with any Tree implementation.
 BitSet
org.antlr.runtimeA stripped-down version of org.antlr.misc.BitSet that is just good enough to handle runtime requirements such as FOLLOW sets for automatic error recovery.
 CharStream
org.antlr.runtime A source of characters for an ANTLR lexer
 CharStreamConstants
org.antlr.runtime 
 CharStreamState
org.antlr.runtime When walking ahead with cyclic DFA or for syntactic predicates, we need to record the state of the input stream (char index, line, etc...) so that we can rewind the state after scanning ahead.
 CommonErrorNode
org.antlr.runtime.tree 
 CommonToken
org.antlr.runtime 
 CommonTokenStream
org.antlr.runtime The most common stream of tokens is one where every token is buffered up and tokens are prefiltered for a certain channel (the parser will only see these tokens and cannot change the filter channel number during the parse).
 CommonTree
org.antlr.runtime.tree A tree node that is wrapper for a Token object.
 CommonTreeAdaptor
org.antlr.runtime.tree A TreeAdaptor that works with any Tree implementation.
 CommonTreeNodeStream
org.antlr.runtime.tree A buffered stream of tree nodes.
 DFA
org.antlr.runtime A DFA implemented as a set of transition tables.
 EarlyExitException
org.antlr.runtime The recognizer did not match anything for a (..)+ loop.
 FailedPredicateException
org.antlr.runtime A semantic predicate failed during validation.
 IntStream
org.antlr.runtime A simple stream of integers used when all I care about is the char or token type sequence (such as interpretation).
 Lexer
org.antlr.runtime A lexer is recognizer that draws input symbols from a character stream.
 MismatchedNotSetException
org.antlr.runtime 
 MismatchedRangeException
org.antlr.runtime 
 MismatchedSetException
org.antlr.runtime 
 MismatchedTokenException
org.antlr.runtime A mismatched char or Token or tree node
 MismatchedTreeNodeException
org.antlr.runtime 
 MissingTokenException
org.antlr.runtime 
 NoViableAltException
org.antlr.runtime 
 Parser
org.antlr.runtime A parser for TokenStreams.
 ParserRuleReturnScope
org.antlr.runtime Rules that return more than a single value must return an object containing all the values.
 RecognitionException
org.antlr.runtime The root of the ANTLR exception hierarchy.
 RecognizerSharedState
org.antlr.runtime The set of fields needed by an abstract recognizer to recognize input and recover from errors etc...
 RewriteCardinalityException
org.antlr.runtime.tree Base class for all exceptions thrown during AST rewrite construction.
 RewriteEarlyExitException
org.antlr.runtime.tree No elements within a (...)+ in a rewrite rule
 RewriteEmptyStreamException
org.antlr.runtime.tree Ref to ID or expr but no tokens in ID stream or subtrees in expr stream
 RewriteRuleElementStream
org.antlr.runtime.tree A generic list of elements tracked in an alternative to be used in a -> rewrite rule.
 RewriteRuleNodeStream
org.antlr.runtime.tree Queues up nodes matched on left side of -> in a tree parser.
 RewriteRuleSubtreeStream
org.antlr.runtime.tree 
 RewriteRuleTokenStream
org.antlr.runtime.tree 
 RuleReturnScope
org.antlr.runtime Rules can return start/stop info as well as possible trees and templates
 Token
org.antlr.runtime 
 TokenConstants
org.antlr.runtime 
 TokenRewriteStream
org.antlr.runtime Useful for dumping out the input stream after doing some augmentation or other manipulations.
 TokenSource
org.antlr.runtime A source of tokens must provide a sequence of tokens via nextToken() and also must reveal it's source of characters; CommonToken's text is computed from a CharStream; it only store indices into the char stream.
 TokenStream
org.antlr.runtime A stream of tokens accessing tokens from a TokenSource
 Tree
org.antlr.runtime.tree What does a tree look like? ANTLR has a number of support classes such as CommonTreeNodeStream that work on these kinds of trees.
 TreeAdaptor
org.antlr.runtime.tree How to create and navigate trees.
 TreeConstants
org.antlr.runtime.tree 
 TreeNodeStream
org.antlr.runtime.tree A stream of tree nodes, accessing nodes from a tree of some kind
 TreeParser
org.antlr.runtime.tree A parser for a stream of tree nodes.
 TreeRuleReturnScope
org.antlr.runtime.tree This is identical to the ParserRuleReturnScope except that the start property is a tree nodes not Token object when you are parsing trees.
 UnwantedTokenException
org.antlr.runtime