Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 798 → Rev 799

/sun/xmleditor/trunk/src/plugins/PluginManager.java
4,10 → 4,10
* Coded by: Group 5, software practice summer 2003
* University of Bielefeld, Germany
*
* @version $Revision: 1.56 $
* @version $Revision: 1.57 $
*
* Last modification: $Date: 2003/07/24 22:18:06 $
* $Id: PluginManager.java,v 1.56 2003/07/24 22:18:06 ioklasse Exp $
* Last modification: $Date: 2003/07/25 11:31:18 $
* $Id: PluginManager.java,v 1.57 2003/07/25 11:31:18 swalkenh Exp $
*/
 
package src.plugins;
56,7 → 56,7
*
* @author Sascha Walkenhorst
*
* @version $Revision: 1.56 $ Last modification: $Date: 2003/07/24 22:18:06 $
* @version $Revision: 1.57 $ Last modification: $Date: 2003/07/25 11:31:18 $
*/
public class PluginManager implements TreeSelectionListener,
PluginManagerInterface,
1041,16 → 1041,19
 
/**
* Method for logging a message with specific style.
* Sends a text message of a specified type (info, error, warning) to the
* registered log panel.
* A reference to an implementation of a log panel can be set with the
* <code>setLogInterface</code> method.
*
* @param i The type of the message.
* @param message The message.
* @param i The type of the message as defined in src.gui.LogInterface.
* 0 or src.gui.LogInterface.TYPE_INFO -> info message (black)
* 1 or src.gui.LogInterface.TYPE_WARNING -> warning message (orange)
* 2 or src.gui.LogInterface.TYPE_ERROR -> error message (red)
*
* @see src.gui.LogInterface#log(int, java.lang.String)
*
* Last revision: 21-Jul-2003 by Sascha W.
*/
public void log(int i, String message) {
* @param message The text message to display in the log panel.
*/
private void log(int i, String message) {
logInterfaceReference.log(i,message);
}