Last change
on this file was
319,
checked in by sherbold, 13 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
497 bytes
|
Rev | Line | |
---|
[319] | 1 | package de.ugoe.cs.util.console.mock;
|
---|
| 2 |
|
---|
| 3 | import de.ugoe.cs.util.console.ConsoleObserver;
|
---|
| 4 |
|
---|
| 5 | @SuppressWarnings("deprecation")
|
---|
| 6 | public class MockObserver implements ConsoleObserver {
|
---|
| 7 |
|
---|
| 8 | @Override
|
---|
| 9 | public void commandNotification(String command) {
|
---|
| 10 | }
|
---|
| 11 | @Override
|
---|
| 12 | public void errorMsg(String errMessage) {
|
---|
| 13 | }
|
---|
| 14 | @Override
|
---|
| 15 | public void logException(Exception e) {
|
---|
| 16 | }
|
---|
| 17 | @Override
|
---|
| 18 | public void outputMsg(String newMessage) {
|
---|
| 19 | }
|
---|
| 20 | @Override
|
---|
| 21 | public void traceMsg(String traceMessage) {
|
---|
| 22 | }
|
---|
| 23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.