plugins
Interface IDebugWindow

All Known Implementing Classes:
DebugWindow

public interface IDebugWindow

This Window shows Debuginformations for the plugindeveloper, because System.out can not be used. The Window can manage HTML Code, so use it to format your Output and do not use \n or \t.


Method Summary
 void append(java.lang.String text)
          Add a line to the Output of the Window
 void append(java.lang.Throwable throwable)
          Add an exception to the Output of the Window
 void clear()
          Clear the Output of the Window
 void setLocation(java.awt.Point location)
          Set the Location of the Window
 void setSize(java.awt.Dimension size)
          Set the Size of the Window
 void setVisible(boolean show)
          Set the Window visible or hide it
 

Method Detail

setLocation

void setLocation(java.awt.Point location)
Set the Location of the Window

Parameters:
location - TODO Missing Constructuor Parameter Documentation

setSize

void setSize(java.awt.Dimension size)
Set the Size of the Window

Parameters:
size - TODO Missing Constructuor Parameter Documentation

setVisible

void setVisible(boolean show)
Set the Window visible or hide it

Parameters:
show - TODO Missing Constructuor Parameter Documentation

append

void append(java.lang.String text)
Add a line to the Output of the Window

Parameters:
text - TODO Missing Constructuor Parameter Documentation

append

void append(java.lang.Throwable throwable)
Add an exception to the Output of the Window

Parameters:
throwable - TODO Missing Constructuor Parameter Documentation

clear

void clear()
Clear the Output of the Window