Uses of Interface
edu.columbia.cs.ref.model.constraint.relationship.RelationshipConstraint

Packages that use RelationshipConstraint
edu.columbia.cs.ref.model.constraint.relationship.impl   
edu.columbia.cs.ref.model.relationship   
 

Uses of RelationshipConstraint in edu.columbia.cs.ref.model.constraint.relationship.impl
 

Classes in edu.columbia.cs.ref.model.constraint.relationship.impl that implement RelationshipConstraint
 class AndRelationshipConstraint
          The Class AndRelationshipConstraint is an implementation of RelationshipConstraint that is used to compose several other constraints.
 class DistanceBetweenEntitiesConstraint
          The Class DistanceBetweenEntitiesConstraint is an implementation of RelationshipConstraint that checks if the number of characters between entities is less than a given value passed to the constructor.
 class DummyRelationshipConstraint
          The Class DummyRelationshipConstraint is an implementation of the RelationshipConstraint that is actually a dummy check.
 class EntitiesOrderNotRelevantConstraint
          The Class WordDistanceBetweenEntities is an implementation of RelationshipConstraint that indicates that the order of the entities is not relevant since the relationship is symmetric.
 class OrRelationshipConstraint
          The Class OrRelationshipConstraint is an implementation of RelationshipConstraint that is used to compose several other constraints.
 class WordDistanceBetweenEntities
          The Class WordDistanceBetweenEntities is an implementation of RelationshipConstraint that checks if the number of words between entities is less than a given value passed to the constructor.
 

Constructors in edu.columbia.cs.ref.model.constraint.relationship.impl with parameters of type RelationshipConstraint
AndRelationshipConstraint(RelationshipConstraint... constraints)
          Instantiates a new AndRelationshipConstraint.
OrRelationshipConstraint(RelationshipConstraint... constraints)
          Instantiates a new or relationship constraint.
 

Uses of RelationshipConstraint in edu.columbia.cs.ref.model.relationship
 

Methods in edu.columbia.cs.ref.model.relationship that return RelationshipConstraint
 RelationshipConstraint RelationshipType.getRelationshipConstraint()
          Gets the relationship constraint for this relationship type.
 

Methods in edu.columbia.cs.ref.model.relationship with parameters of type RelationshipConstraint
 void RelationshipType.setConstraints(RelationshipConstraint constraint)
          Sets the relationship constraint for this relationship type.