KickJava   Java API By Example, From Geeks To Geeks.

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


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.Container JavaDoc;
10
11 /**
12  * Description of the Class
13  *
14  * @author Laurent Etiemble
15  * @version $Revision: 1.5 $
16  * @todo Javadoc to complete
17  */

18 public interface SDIFrameService extends FrameService
19 {
20    /**
21     * Sets the content attribute of the SDIFrameService object
22     *
23     * @param c The new content value
24     */

25    public void setContent(Container JavaDoc c);
26 }
27
28
Popular Tags