Uses of Interface
com.varankin.bnf.SyntacticPrimary

Packages that use SyntacticPrimary
com.varankin.bnf BNF syntax object model. 
 

Uses of SyntacticPrimary in com.varankin.bnf
 

Classes in com.varankin.bnf that implement SyntacticPrimary
 class EmptySequence
          An empty-sequence consists of the empty sequence of terminal-characters.
 class GroupedSequence
          A grouped-sequence consists of a start-group-symbol followed by a definitions-list followed by an end-group-symbol.
 class MetaIdentifier
          A meta-identifier consists of an ordered list of one or more meta-identifier-characters subject to the condition that the first meta-identifier-character is a letter.
 class OptionalSequence
          An optional-sequence consists of a start-option-symbol followed by a definitions-list followed by an end-option-symbol.
 class RepeatedSequence
          A repeated-sequence consists of a start-repeat-symbol followed by a definitions-list followed by an end-repeat-symbol.
 class SpecialSequence
          A special-sequence consists of a special-sequence-symbol followed by a (possibly empty) sequence of special-sequence- characters followed by a special-sequence-symbol.
 class TerminalString
          A quote-symbol followed by a sequence of one or more terminal-characters followed by a quote-symbol.
 

Fields in com.varankin.bnf declared as SyntacticPrimary
 SyntacticPrimary SyntacticFactor.primary
          Implementing syntactic primary.
 

Constructors in com.varankin.bnf with parameters of type SyntacticPrimary
SyntacticFactor(int aRepeat, SyntacticPrimary aPrimary)
           
SyntacticFactor(SyntacticPrimary aPrimary)