source: trunk/JavaHelperLibTest/src/de/ugoe/cs/util/console/mock/MockCommandListener.java @ 319

Last change on this file since 319 was 319, checked in by sherbold, 12 years ago
  • Property svn:mime-type set to text/plain
File size: 364 bytes
Line 
1package de.ugoe.cs.util.console.mock;
2
3import de.ugoe.cs.util.console.listener.ICommandListener;
4
5public class MockCommandListener implements ICommandListener {
6        private String lastCommand = null;
7
8        public String getLastCommand() {
9                return lastCommand;
10        }
11
12        @Override
13        public void commandNotification(String command) {
14                lastCommand = command;
15        }
16}
Note: See TracBrowser for help on using the repository browser.