KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > ejtools > management > test > TestReport


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 net.sourceforge.ejtools.management.test;
8
9 import java.io.Serializable JavaDoc;
10 import java.util.Hashtable JavaDoc;
11
12 /**
13  * Description of the Class
14  *
15  * @author letiembl
16  * @created 21 mars 2002
17  */

18 public interface TestReport extends Serializable JavaDoc
19 {
20    /**
21     * Gets the name attribute of the TestReport object
22     *
23     * @return The name value
24     */

25    public String JavaDoc getName();
26
27
28    /**
29     * Gets the description attribute of the TestReport object
30     *
31     * @return The description value
32     */

33    public String JavaDoc getDescription();
34
35
36    /**
37     * Gets the report attribute of the TestReport object
38     *
39     * @return The report value
40     */

41    public Hashtable JavaDoc getReport();
42 }
43
Popular Tags