1 20 package org.enhydra.barracuda.core.forms; 21 22 import java.util.*; 23 24 46 public interface FormValidator { 47 48 54 public void setErrorMessage(String ierrorMessage); 55 56 62 public String getErrorMessage(); 63 64 72 74 81 83 88 90 95 97 102 104 117 public void validate(FormElement element, FormMap formMap, boolean deferExceptions) throws ValidationException; 118 119 136 138 157 159 180 182 185 186 187 190 191 192 193 203 public boolean isNull(Object val, FormElement element); 204 206 } 207 | Popular Tags |