KickJava   Java API By Example, From Geeks To Geeks.

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


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

13 public interface Formatter extends AssertListener
14 {
15     public final static int PASSED = 0;
16     public final static int FAILED = 1;
17     public final static int ERROR = 2;
18     public final static int UNDEF = 3;
19     
20     public void setName(String JavaDoc name);
21     public void addProperty(String JavaDoc key, Object JavaDoc value);
22     public void addResult(String JavaDoc message, int status);
23     public long getPercentage();
24 }
25
Popular Tags