KickJava   Java API By Example, From Geeks To Geeks.

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


1 package net.sourceforge.ejtools.management.test;
2
3 import java.io.OutputStream JavaDoc;
4 import java.io.Writer JavaDoc;
5
6 import junit.framework.Test;
7
8 /**
9  * @author laurent To change this generated comment edit the template variable "typecomment": Window>Preferences>Java>Templates. To enable and disable the
10  * creation of type comments go to Window>Preferences>Java>Code Generation.
11  * @created 5 août 2002
12  */

13 public interface Report extends ResultSink
14 {
15    /**
16     * Sets the name attribute of the Report object
17     *
18     * @param name The new name value
19     */

20    public void setName(String JavaDoc name);
21
22
23    /**
24     * Sets the title attribute of the Report object
25     *
26     * @param name The new title value
27     */

28    public void setTitle(String JavaDoc name);
29
30
31    /**
32     * Adds a feature to the Information attribute of the Report object
33     *
34     * @param message The feature to be added to the Information attribute
35     * @param status The feature to be added to the Information attribute
36     */

37    public void addInfo(Test test, String JavaDoc key, String JavaDoc value);
38
39
40    /**
41     * Sets the output attribute of the Report object
42     *
43     * @param stream The new output value
44     */

45    public void write(OutputStream JavaDoc stream);
46
47
48    /**
49     * Sets the output attribute of the Report object
50     *
51     * @param writer The new output value
52     */

53    public void write(Writer JavaDoc writer);
54
55
56    /**
57     * Sets the template attribute of the Report object
58     *
59     * @param filename The new template value
60     */

61    public void setTemplate(String JavaDoc filename);
62 }
63
Popular Tags