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 AboutService19 {20 /**21 * Description of the Method22 *23 * @return The value of panel attribute24 */25 public Container getPanel();26 27 28 /**29 * Getter for the title attribute30 *31 * @return The value of title attribute32 */33 public String getTitle();34 }35