Uses of Interface
net.sf.parcinj.Processor

Packages that use Processor
net.sf.parcinj ParCinJ core classes. 
net.sf.parcinj.example.list Example: List Parser 
 

Uses of Processor in net.sf.parcinj
 

Classes in net.sf.parcinj with type parameters of type Processor
 class AbstractSymbol<P extends Processor>
          Abstract super class which implements Symbol.process(TokenIterator, Processor) according to the contract.
 class Alternative<P extends Processor>
          Compound symbol which contains several Symbols.
 class NonTerminalSymbol<P extends Processor>
          Named wrapper of a Symbol.
 class OneOrMore<P extends Processor>
          Wraps a symbol which will be executed one or more times.
 class Optional<P extends Processor>
          Wraps a symbol which will be processed only if it matches the current token.
 class Sequence<P extends Processor>
          Sequence of symbols.
 class SequenceOfSeparatedSymbols<P extends Processor>
          Compound with two symbols where one symbol is a delimiter.
 interface Symbol<P extends Processor>
          Interface of classes representing a symbol.
 class TerminalSymbol<P extends Processor>
          Abstract super class of all terminal symbols.
 class TerminalSymbolByText<P extends Processor>
          A terminal symbol which matches a Token by token text.
 class TerminalSymbolByType<P extends Processor>
          Terminal symbol specified by a TokenType.
 class ZeroOrMore<P extends Processor>
          Wraps a symbol which will be executed zero or more times.
 

Uses of Processor in net.sf.parcinj.example.list
 

Subinterfaces of Processor in net.sf.parcinj.example.list
 interface ListProcessor
           
 

Classes in net.sf.parcinj.example.list that implement Processor
 class ListBuilder