Building Parsers with Java

Uses of Class
sjm.parse.CollectionParser

Packages that use CollectionParser
sjm.examples.mechanics   
sjm.examples.track   
sjm.parse   
 

Uses of CollectionParser in sjm.examples.mechanics
 

Subclasses of CollectionParser in sjm.examples.mechanics
 class VerboseSequence
          The match() method of this class prints the collection of assemblies it receives, and each new collection it creates.
 

Uses of CollectionParser in sjm.examples.track
 

Subclasses of CollectionParser in sjm.examples.track
 class Track
          A Track is a sequence that throws a TrackException if the sequence begins but does not complete.
 

Uses of CollectionParser in sjm.parse
 

Subclasses of CollectionParser in sjm.parse
 class Alternation
          An Alternation object is a collection of parsers, any one of which can successfully match against an assembly.
 class Sequence
          A Sequence object is a collection of parsers, all of which must in turn match against an assembly for this parser to successfully match.
 

Methods in sjm.parse that return CollectionParser
 CollectionParser CollectionParser.add(Parser e)
          Adds a parser to the collection.
 


by Steve Metsker