KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > util > state > DefaultRule


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.util.state;
8
9 import java.util.Map JavaDoc;
10
11 /**
12  * @author Laurent Etiemble
13  * @version $Revision: 1.2 $
14  */

15 public class DefaultRule implements Rule
16 {
17    /**
18     * Description of the Method
19     *
20     * @param context Description of the Parameter
21     */

22    public void loadBody(Map JavaDoc context)
23    {
24    }
25
26
27    /**
28     * Description of the Method
29     *
30     * @param context Description of the Parameter
31     */

32    public void loadEnter(Map JavaDoc context)
33    {
34    }
35
36
37    /**
38     * Description of the Method
39     *
40     * @param context Description of the Parameter
41     */

42    public void loadExit(Map JavaDoc context)
43    {
44    }
45 }
46
Popular Tags