KickJava   Java API By Example, From Geeks To Geeks.

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


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.jndi.browser.state.rules;
8
9 import java.util.Map JavaDoc;
10
11 import org.ejtools.jndi.browser.frame.ServerInternalFrame;
12 import org.ejtools.util.state.DefaultRule;
13
14 /**
15  * @author letiembl
16  * @version $Revision: 1.2 $
17  * @created 20 juin 2003
18  */

19 public class ServerInternalFrameRule extends DefaultRule
20 {
21    /**
22     * Description of the Method
23     *
24     * @param context Description of the Parameter
25     */

26    public void loadEnter(Map JavaDoc context)
27    {
28       ServerInternalFrame frame = new ServerInternalFrame();
29       context.put("FRAME", frame);
30       context.put("HOLDER", frame);
31    }
32 }
33
Popular Tags