KickJava   Java API By Example, From Geeks To Geeks.

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


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 import java.awt.event.WindowListener JavaDoc;
10 import java.beans.beancontext.BeanContextContainerProxy JavaDoc;
11
12 /**
13  * Description of the Class
14  *
15  * @author Laurent Etiemble
16  * @version $Revision: 1.5 $
17  * @todo Javadoc to complete
18  */

19 public interface FrameService extends BeanContextContainerProxy JavaDoc, MenuBarService.Listener
20 {
21    /** Description of the Field */
22    public final static int MDI = 0;
23    /** Description of the Field */
24    public final static int SDI = 1;
25
26
27    /**
28     * Setter for the title attribute
29     *
30     * @param title The new value
31     */

32    public void setTitle(String JavaDoc title);
33
34
35    /**
36     * Adds a feature to the WindowListener attribute of the FrameService object
37     *
38     * @param l The feature to be added to the WindowListener attribute
39     */

40    public void addWindowListener(WindowListener JavaDoc l);
41
42
43    /**
44     * Description of the Method
45     *
46     * @param l Description of Parameter
47     */

48    public void removeWindowListener(WindowListener JavaDoc l);
49 }
50
51
Popular Tags