KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > validator > test > TestValidator3


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.validator.test;
8
9
10 import java.util.Map JavaDoc;
11
12 import com.inversoft.verge.mvc.controller.Action;
13 import com.inversoft.verge.mvc.validator.Validator;
14 import com.inversoft.verge.util.WebBeanProperty;
15
16
17 /**
18  * <p>
19  * This class is a test validator 3
20  * </p>
21  *
22  * @author Brian Pontarelli
23  * @since 2.0
24  * @version 2.0
25  */

26 public class TestValidator3 implements Validator {
27
28     /**
29      * Constructor for TestValidator3.
30      */

31     public TestValidator3() {
32         super();
33     }
34
35
36     /**
37      *
38      */

39     public boolean validate(Map JavaDoc modelObjects, Action action) {
40         return false;
41     }
42
43     /**
44      *
45      */

46     public void handleConversion(Object JavaDoc model, WebBeanProperty property,
47             Action action) {
48     }
49 }
50
Popular Tags