1 16 package javax.faces.validator; 17 18 import javax.faces.component.UIComponent; 19 import javax.faces.context.FacesContext; 20 import java.util.EventListener ; 21 22 27 public interface Validator 28 extends EventListener  29 { 30 public static final String NOT_IN_RANGE_MESSAGE_ID = "javax.faces.validator.NOT_IN_RANGE"; 31 32 public void validate(FacesContext context, 33 UIComponent component, 34 Object value) 35 throws ValidatorException; 36 } 37 | Popular Tags |