1 /*
2 * $Id: IOnErrorTask.java,v 1.1 2007/11/29 12:58:13 oeuillot Exp $
3 */
4 package org.rcfaces.core.validator;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2007/11/29 12:58:13 $
10 */
11 public interface IOnErrorTask extends IClientValidatorTask {
12
13 int CHECK_TASK = 1;
14
15 int FORMATTER_TASK = 2;
16
17 int BEHAVIOR_TASK = 4;
18
19 void performError(IClientValidatorContext context, int task,
20 boolean errorPerformed);
21 }