Uses of Class
gate.jape.constraint.AbstractConstraintPredicate

Packages that use AbstractConstraintPredicate
gate.creole   
gate.jape.constraint   
 

Uses of AbstractConstraintPredicate in gate.creole
 

Subclasses of AbstractConstraintPredicate in gate.creole
static class TestPR.TestConstraintPredicate
           
 

Uses of AbstractConstraintPredicate in gate.jape.constraint
 

Subclasses of AbstractConstraintPredicate in gate.jape.constraint
 class AbstractRegExpPredicate
          Abstract regular expression based predicate implementation.
 class ComparablePredicate
          Base class for those predicates which use compareTo to compare values.
 class ComparablePredicateTest.ComparablePredicateImpl
           
 class ContainsPredicate
          Returns true if there is an annotation of the type set in value that is entirely spanned by the given annotation
 class EmbeddedConstraintPredicate
          Predicate whose getValue() property may be set to a Constraint itself, allowing for recursive evaluations.
 class EqualPredicate
           
 class GreaterEqualPredicate
           
 class GreaterPredicate
           
 class LesserEqualPredicate
           
 class LesserPredicate
           
 class NotContainsPredicate
          Returns false if there is an annotation of the type set in value that is entirely spanned by the given annotation
 class NotEqualPredicate
           
 class NotRegExpFindPredicate
          Implementation of the =~ predicate, which fails if any part of the annotation value matches the given regular expression, and succeeds otherwise.
 class NotRegExpMatchPredicate
          Implementation of the !
 class NotWithinPredicate
          Returns false if the given annotation is entirely spanned by an annotation of the type set in value.
 class RegExpFindPredicate
          Implementation of the =~ predicate, which succeeds if any part of the annotation value matches the given regular expression, and fails otherwise.
 class RegExpMatchPredicate
          Implementation of the ==~ predicate, which succeeds if the entire annotation value matches the given regular expression, and fails otherwise.
 class WithinPredicate
          Returns true if the given annotation is entirely spanned by an annotation of the type set in value.