Parsing Engine

danbikel.parser.constraints
Class ConstraintSets

java.lang.Object
  extended by danbikel.parser.constraints.ConstraintSets

public class ConstraintSets
extends Object

Static factory for ConstraintSet objects. This scheme allows the type of ConstraintSet object to be determined at run-time. The type of constraint set factory used is deteremined by the value of the property Settings.constraintSetFactoryClass.

See Also:
ConstraintSetFactory, Settings.constraintSetFactoryClass, ConstraintSet

Method Summary
static ConstraintSet get()
          Return a ConstraintSet object created with its default constructor.
static ConstraintSet get(Object input)
          Return a ConstraintSet object created with its one-argument constructor, using the specified S-expression.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

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


get

public static ConstraintSet get(Object input)
Return a ConstraintSet object created with its one-argument constructor, using the specified S-expression.

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

Parsing Engine

Author: Dan Bikel.