org.apache.cocoon.woody.validation.impl
Class JavaScriptValidator
java.lang.Object
org.apache.cocoon.woody.validation.impl.JavaScriptValidator
- All Implemented Interfaces:
- WidgetValidator
public class JavaScriptValidator
- extends Object
- implements WidgetValidator
A WidgetValidator
implemented as a JavaScript snippet.
This snippet must return a boolean value. If it returns false
, it must have
set a validation error on the validated widget or one of its children.
The JavaScript snippet has the "this" variable set to the validated widget, and, if the form is used in a
flowscript, can use the flow's global values and fonctions and the cocoon
object.
- Version:
- CVS $Id: JavaScriptValidator.html 1304258 2012-03-23 10:09:27Z ilgrosso $
- Author:
- Sylvain Wallez
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
JavaScriptValidator
public JavaScriptValidator(Context context,
org.mozilla.javascript.Function function)
validate
public final boolean validate(Widget widget,
FormContext context)
- Description copied from interface:
WidgetValidator
- Validate a widget.
- Specified by:
validate
in interface WidgetValidator
- Parameters:
widget
- the widget to validatecontext
- the form context
- Returns:
true
if validation was successful. If not, the validator must have set
a ValidationError
on the widget or one of its children.
Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.