KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public interface ResultSink extends AssertListener
11 {
12    /** Description of the Field */
13    public final static int PASSED = 0;
14    /** Description of the Field */
15    public final static int FAILED = 1;
16    /** Description of the Field */
17    public final static int ERROR = 2;
18
19
20    /**
21     * Gets the percentage attribute of the ResultSink object
22     *
23     * @return The percentage value
24     */

25    public long getPercentage();
26    
27    public void dump();
28 }
29
Popular Tags