source: trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java @ 199

Last change on this file since 199 was 199, checked in by sherbold, 13 years ago

Major change to the Console provided by this library. The interface de.ugoe.cs.console.ConsoleObserver? is deprecated and split into the five interface IOutputListener, IErrorListener, ITraceListener, IExceptionListener, and ICommandListener.

The rational for this change is to provide the possibility to listen to only parts of what is send to the console to provide better capabilities for target-oriented handling of the different streams, e.g., for exception logging.

File size: 659 bytes
Line 
1package de.ugoe.cs.util.console;
2
3import de.ugoe.cs.util.console.listener.ICommandListener;
4import de.ugoe.cs.util.console.listener.IErrorListener;
5import de.ugoe.cs.util.console.listener.IExceptionListener;
6import de.ugoe.cs.util.console.listener.IOutputListener;
7import de.ugoe.cs.util.console.listener.ITraceListener;
8
9/**
10 * <p>
11 * Observer for Console.
12 * </p>
13 *
14 * @author Steffen Herbold
15 * @version 2.0
16 * @deprecated Use listeners defined in the package de.ugoe.cs.console.listeners instead.
17 */
18public interface ConsoleObserver extends ITraceListener, IOutputListener, IErrorListener, ICommandListener, IExceptionListener {
19
20}
Note: See TracBrowser for help on using the repository browser.