1 /*2 * EJTools, the Enterprise Java Tools3 *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 ;10 11 import org.ejtools.adwt.action.CommandAction;12 13 /**14 * Description of the Class15 *16 * @author Laurent Etiemble17 * @version $Revision: 1.5 $18 * @todo Javadoc to complete19 */20 public interface ToolBarService extends BeanContextContainerProxy 21 {22 /**23 * Description of the Method24 *25 * @param action Description of Parameter26 */27 public void register(CommandAction action);28 29 30 /**31 * Description of the Method32 *33 * @param action Description of Parameter34 */35 public void unregister(CommandAction action);36 }37 38