1 /*2 * EJTools, the Enterprise Java Tools3 *4 * Distributable under LGPL license.5 * See terms of license at www.gnu.org.6 */7 package net.sourceforge.ejtools.management.test;8 9 import java.io.Serializable ;10 import java.util.Hashtable ;11 12 /**13 * Description of the Class14 *15 * @author letiembl16 * @created 21 mars 200217 */18 public interface TestReport extends Serializable 19 {20 /**21 * Gets the name attribute of the TestReport object22 *23 * @return The name value24 */25 public String getName();26 27 28 /**29 * Gets the description attribute of the TestReport object30 *31 * @return The description value32 */33 public String getDescription();34 35 36 /**37 * Gets the report attribute of the TestReport object38 *39 * @return The report value40 */41 public Hashtable getReport();42 }43