Uses of Interface
diva.sketch.parser2d.RelationConstraint

Uses of RelationConstraint in diva.sketch.parser2d
 

Classes in diva.sketch.parser2d that implement RelationConstraint
 class AndConstraint
          A composite constraint that ANDs together the results of its child constraint objects.
 class BasicConstraint
          An object that returns whether a pair of rectangles satisfies constraints on the values of a specified relation.
 class OrConstraint
          A composite constraint that ORs together the results of its child constraint objects.
 

Methods in diva.sketch.parser2d with parameters of type RelationConstraint
 Constituent[] ConstituentSet.findRelatives(Constituent c, java.lang.String type, RelationConstraint r)
          Return the set of constituents of the given type, related to the the given constituent by the given relation.
 void AndConstraint.addConstraint(RelationConstraint r)
          Add another child constraint to the test.
 void OrConstraint.addConstraint(RelationConstraint r)
          Add another child constraint to the test.
 

Constructors in diva.sketch.parser2d with parameters of type RelationConstraint
BasicRule.BasicRule(java.lang.String ruleType, java.lang.String rootName, java.lang.String rootType, java.lang.String[] relativeNames, java.lang.String[] relativeTypes, RelationConstraint[] constraints)
          Construct a new basic rule with the given LHS and RHS structure.