Last change
on this file since 244 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 | |
---|
1 | package de.ugoe.cs.util.console;
|
---|
2 |
|
---|
3 | import de.ugoe.cs.util.console.listener.ICommandListener;
|
---|
4 | import de.ugoe.cs.util.console.listener.IErrorListener;
|
---|
5 | import de.ugoe.cs.util.console.listener.IExceptionListener;
|
---|
6 | import de.ugoe.cs.util.console.listener.IOutputListener;
|
---|
7 | import 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 | */
|
---|
18 | public interface ConsoleObserver extends ITraceListener, IOutputListener, IErrorListener, ICommandListener, IExceptionListener {
|
---|
19 |
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.