KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > config > test > TestActionHandler


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.controller.actionflow.config.test;
8
9
10 import com.inversoft.verge.mvc.controller.Action;
11
12
13 /**
14  * <p>
15  * This class is a test action handler
16  * </p>
17  *
18  * @author Brian Pontarelli
19  */

20 public class TestActionHandler {
21
22     /**
23      * Instantiates a new <code>TestActionHandler</code>
24      */

25     public TestActionHandler() {
26     }
27
28
29     /**
30      * A test handler method
31      */

32     public void handleTestAction(Action formEvent) {
33     }
34
35     /**
36      * A test handler method
37      */

38     public void handleTestAction2(Action formEvent) {
39     }
40
41     /**
42      * A test handler method
43      */

44     public void handleTestAction3(Action formEvent) {
45     }
46 }
47
Popular Tags