KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > browser > state > rules > ServerInternalFrameRule


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

12
13 package org.ejtools.jmx.browser.state.rules;
14
15
16
17 import java.util.Map JavaDoc;
18
19
20
21 import org.ejtools.jmx.browser.frame.ServerInternalFrame;
22
23 import org.ejtools.util.state.DefaultRule;
24
25
26
27 /**
28
29  * @author letiembl
30
31  * @version $Revision: 1.2 $
32
33  * @created 20 juin 2003
34
35  */

36
37 public class ServerInternalFrameRule extends DefaultRule
38
39 {
40
41    /**
42
43     * Description of the Method
44
45     *
46
47     * @param context Description of the Parameter
48
49     */

50
51    public void loadEnter(Map JavaDoc context)
52
53    {
54
55       ServerInternalFrame frame = new ServerInternalFrame();
56
57       context.put("FRAME", frame);
58
59       context.put("HOLDER", frame);
60
61    }
62
63 }
64
65
Popular Tags