KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
13  * @author Laurent Etiemble
14  * @version $Revision: 1.2 $
15  */

16 public interface Rule
17 {
18    /**
19     * Description of the Method
20     *
21     * @param context Description of the Parameter
22     */

23    public void loadEnter(Map JavaDoc context);
24
25
26    /**
27     * Description of the Method
28     *
29     * @param context Description of the Parameter
30     */

31    public void loadBody(Map JavaDoc context);
32
33
34    /**
35     * Description of the Method
36     *
37     * @param context Description of the Parameter
38     */

39    public void loadExit(Map JavaDoc context);
40 }
41
Popular Tags