KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > service > MDIFrameService


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.adwt.service;
8
9
10 /**
11  * Description of the Class
12  *
13  * @author Laurent Etiemble
14  * @version $Revision: 1.5 $
15  * @todo Javadoc to complete
16  */

17 public interface MDIFrameService extends FrameService
18 {
19    /**
20     * Description of the Method
21     *
22     * @param frame Description of Parameter
23     */

24    public void register(BeanContextInternalFrame frame);
25
26
27    /**
28     * Description of the Method
29     *
30     * @param frame Description of Parameter
31     */

32    public void unregister(BeanContextInternalFrame frame);
33
34
35    /**
36     * Description of the Method
37     *
38     * @param frame Description of Parameter
39     */

40    public void activate(BeanContextInternalFrame frame);
41 }
42
43
Popular Tags