* Returns the constant constraint that always will fail when it is posted or executed.
* @return the False Constraint
*/
public Constraint getFalseConstraint() {
if (falseConstraint == null) {
com.exigen.ie.constrainer.Constraint myConstraint = new ConstraintConst(constrainer, false);
falseConstraint = new javax.constraints.impl.Constraint(this, myConstraint);
}
return falseConstraint;
}