KickJava   Java API By Example, From Geeks To Geeks.

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


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

20 public interface ToolBarService extends BeanContextContainerProxy JavaDoc
21 {
22    /**
23     * Description of the Method
24     *
25     * @param action Description of Parameter
26     */

27    public void register(CommandAction action);
28
29
30    /**
31     * Description of the Method
32     *
33     * @param action Description of Parameter
34     */

35    public void unregister(CommandAction action);
36 }
37
38
Popular Tags