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 Visnovsky9 * @version 1.0.010 */11 interface Printer {12 13 /**14 * Print the debugging info through Debug class.15 *16 * @author Stanislav Visnovsky17 * @version 1.0.018 *19 * @see Debug20 */21 void Print();22 23 void Print( int level );24 };25