KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jsf > JsfValidator


1 package test.jsf;
2
3 import javax.faces.context.*;
4 import javax.faces.component.*;
5 import javax.faces.validator.*;
6
7 /**
8  * @author <a HREF="mailto:markus.plattner at plattners.de">Markus Plattner</a>
9  * Date: 05.07.2004
10  * Time: 13:29:23
11  *
12  * @jsf.validator name="jsfValidator"
13  */

14 public class JsfValidator implements javax.faces.validator.Validator {
15
16    public void JsfValidator() {
17     }
18
19     public void validate(FacesContext facesContext, UIComponent uiComponent, Object JavaDoc o) throws ValidatorException {
20     }
21
22     /**
23      * @jsf.validator-attribute
24      * @return
25      */

26     public String JavaDoc getValidatorAttribute() {
27         return null;
28     }
29 }
30
Popular Tags