Package org.apache.wicket.validation
Interface INullAcceptingValidator<T>
-
- Type Parameters:
T- type of validatable
- All Superinterfaces:
org.apache.wicket.util.io.IClusterable,IValidator<T>,java.io.Serializable
public interface INullAcceptingValidator<T> extends IValidator<T>
Marker interface for validators that will accept anullvalue. Without implementing this interface Wicket will never passnullvalues toIValidator.validate(IValidatable).Keep in mind that the
FormComponentmust have set the required property tofalse, otherwise Wicket will not permit the validator to process thenullvalue.- Since:
- 1.2.6
- Author:
- Matej Knopp
- See Also:
IValidator,FormComponent.setRequired(boolean)
-
-
Method Summary
-
Methods inherited from interface org.apache.wicket.validation.IValidator
validate
-
-