* Needs to be implemented as the Validator interface needs to be
* implemented.
* <p>
- * @param context
- * @param component
- * @param value <p>
+ * @param context FacesContext instance
+ * @param component UIComponent instance
+ * @param value Value to check
+ * <p>
* @throws ValidatorException
*/
@Override
- abstract public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException;
+ public abstract void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException;
/**
* The method pre-validates the given value. It makes sure that the
* component's id has been found, it stops iteration on requiredFields
* (which saves execution time).
* <p>
- * @param context FacesContext instance
- * @param component UIComponent instance
- * @param value Value to check
+ * @param context FacesContext instance
+ * @param component UIComponent instance
+ * @param value Value to check
* @param requiredFields Array of required field names (ending with)
- * @param allowNull Wether null or empty values are allowed
+ * @param allowNull Wether null or empty values are allowed
* <p>
* @throws ValidatorException If something more horrible went wrong
*/