/src/mpv5/logging/LogConsole.java
http://mp-rechnungs-und-kundenverwaltung.googlecode.com/ · Java · 32 lines · 8 code · 6 blank · 18 comment · 0 complexity · fbb9705d3980aeeb4c3d58f87b339acf MD5 · raw file
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package mpv5.logging;
- import javax.swing.JComponent;
- /**
- *
- * @author anti
- */
- public interface LogConsole {
- /**
- * Append a new line to the logging object
- */
- public void log();
- /**
- * Log the String value of the given Object
- * @param object Null objects will lead to the String "NULL"
- */
- public void log(final Object object);
- /**
- * Flush the console contents
- */
- public void flush();
- public JComponent open();
- }