Package org.apache.tapestry5.validator
Class None
- java.lang.Object
-
- org.apache.tapestry5.validator.AbstractValidator<Void,Object>
-
- org.apache.tapestry5.validator.None
-
public class None extends AbstractValidator<Void,Object>
The none validator is does nothing on either the client or the server; primarily it is employed as the validate parameter, to override the validation specified in theValidate
annotation of a property.
-
-
Field Summary
-
Fields inherited from class org.apache.tapestry5.validator.AbstractValidator
javaScriptSupport
-
-
Constructor Summary
Constructors Constructor Description None()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
render(Field field, Void constraintValue, MessageFormatter formatter, MarkupWriter writer, FormSupport formSupport)
Does nothing.void
validate(Field field, Void constraintValue, MessageFormatter formatter, Object value)
Does nothing.-
Methods inherited from class org.apache.tapestry5.validator.AbstractValidator
getConstraintType, getMessageKey, getValueType, isRequired
-
-
-
-
Constructor Detail
-
None
public None()
-
-
Method Detail
-
render
public void render(Field field, Void constraintValue, MessageFormatter formatter, MarkupWriter writer, FormSupport formSupport)
Does nothing.- Parameters:
field
- the field which is currently being renderedconstraintValue
- the value used to constrain inputformatter
- validation message, in the appropriate localewriter
- markup writer, allowing additional attributes to be written into the active elementformSupport
- used to add JavaScript
-
validate
public void validate(Field field, Void constraintValue, MessageFormatter formatter, Object value) throws ValidationException
Does nothing.- Parameters:
field
- the field for which a client submitted value is being validatedconstraintValue
- the value used to constrainformatter
- Validation messages, in the appropriate localevalue
- the translated value supplied by the user- Throws:
ValidationException
- if the value violates the constraint
-
-