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 10 /**11 * Description of the Class12 *13 * @author Laurent Etiemble14 * @version $Revision: 1.5 $15 * @todo Javadoc to complete16 */17 public interface MDIFrameService extends FrameService18 {19 /**20 * Description of the Method21 *22 * @param frame Description of Parameter23 */24 public void register(BeanContextInternalFrame frame);25 26 27 /**28 * Description of the Method29 *30 * @param frame Description of Parameter31 */32 public void unregister(BeanContextInternalFrame frame);33 34 35 /**36 * Description of the Method37 *38 * @param frame Description of Parameter39 */40 public void activate(BeanContextInternalFrame frame);41 }42 43