org.codehaus.groovy.grails.validation
Class NotEqualConstraint

java.lang.Object
  extended by org.codehaus.groovy.grails.validation.AbstractConstraint
      extended by org.codehaus.groovy.grails.validation.NotEqualConstraint
All Implemented Interfaces:
Constraint

 class NotEqualConstraint
extends AbstractConstraint

A Constraint that validates not equal to something


Field Summary
 
Fields inherited from class org.codehaus.groovy.grails.validation.AbstractConstraint
classShortName, constraintOwningClass, constraintParameter, constraintPropertyName, messageSource
 
Constructor Summary
NotEqualConstraint()
           
 
Method Summary
 String getName()
           
 Object getNotEqualTo()
           
protected  void processValidate(Object target, Object propertyValue, Errors errors)
           
 void setParameter(Object constraintParameter)
          The parameter which the constraint is validated against
 boolean supports(Class type)
          Returns whether the constraint supports being applied against the specified type;
 
Methods inherited from class org.codehaus.groovy.grails.validation.AbstractConstraint
checkState, getDefaultMessage, getPropertyName, rejectValue, rejectValue, rejectValue, rejectValue, rejectValue, rejectValueWithDefaultMessage, setMessageSource, setOwningClass, setPropertyName, skipNullValues, toString, validate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotEqualConstraint

NotEqualConstraint()
Method Detail

supports

public boolean supports(Class type)
Description copied from interface: Constraint
Returns whether the constraint supports being applied against the specified type;

Parameters:
type - The type to support
Returns:
True if the constraint can be applied against the specified type

getName

public String getName()
Returns:
The name of the constraint

setParameter

public void setParameter(Object constraintParameter)
Description copied from interface: Constraint
The parameter which the constraint is validated against

Specified by:
setParameter in interface Constraint
Overrides:
setParameter in class AbstractConstraint
Parameters:
constraintParameter - The constraintParameter to set.

getNotEqualTo

public Object getNotEqualTo()
Returns:
Returns the notEqualTo.

processValidate

protected void processValidate(Object target,
                               Object propertyValue,
                               Errors errors)
Specified by:
processValidate in class AbstractConstraint


Copyright (c) 2005-2006 The Grails project