KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Util > Printer


1 /* $Id: Printer.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */
2
3 package SOFA.SOFAnode.Util;
4
5 /**
6  * The interface for printing the debugging info.
7  *
8  * @author Stanislav Visnovsky
9  * @version 1.0.0
10 */

11 interface Printer {
12
13 /**
14  * Print the debugging info through Debug class.
15  *
16  * @author Stanislav Visnovsky
17  * @version 1.0.0
18  *
19  * @see Debug
20 */

21     void Print();
22
23     void Print( int level );
24 };
25
Popular Tags