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.awt.Container ;10 11 /**12 * Description of the Class13 *14 * @author Laurent Etiemble15 * @version $Revision: 1.5 $16 * @todo Javadoc to complete17 */18 public interface SDIFrameService extends FrameService19 {20 /**21 * Sets the content attribute of the SDIFrameService object22 *23 * @param c The new content value24 */25 public void setContent(Container c);26 }27 28