Parsing Engine

danbikel.parser.constraints
Interface ConstraintSetFactory

All Known Implementing Classes:
LexTreeConstraintSetFactory, PartialLexTreeConstraintSetFactory, PartialTreeConstraintSetFactory, UnlexTreeConstraintSetFactory

public interface ConstraintSetFactory

Specification for a ConstraintSet object factory, to be used by the ConstraintSets static factory class.

See Also:
ConstraintSets, Settings.constraintSetFactoryClass

Method Summary
 ConstraintSet get()
          Return a ConstraintSet object created with its default constructor.
 ConstraintSet get(Object input)
          Return a ConstraintSet object created with its one-argument constructor.
 

Method Detail

get

ConstraintSet get()
Return a ConstraintSet object created with its default constructor.


get

ConstraintSet get(Object input)
Return a ConstraintSet object created with its one-argument constructor.

Parameters:
input - the input from which to derive parsing constraints

Parsing Engine

Author: Dan Bikel.