KickJava   Java API By Example, From Geeks To Geeks.

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


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 AboutService
19 {
20    /**
21     * Description of the Method
22     *
23     * @return The value of panel attribute
24     */

25    public Container JavaDoc getPanel();
26
27
28    /**
29     * Getter for the title attribute
30     *
31     * @return The value of title attribute
32     */

33    public String JavaDoc getTitle();
34 }
35
Popular Tags