Changeset 185 for trunk/JavaHelperLib
- Timestamp:
- 09/23/11 03:37:25 (13 years ago)
- Location:
- trunk/JavaHelperLib/src/de/ugoe/cs/util/console
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java
r175 r185 52 52 public void printStacktrace(Exception e); 53 53 54 /** 55 * <p> 56 * Receives the command strings of all executed commands. 57 * </p> 58 * 59 * @param command 60 * string of the command. 61 */ 62 public void commandExecuted(String command); 63 54 64 } -
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java
r175 r185 117 117 return new String(buffer); 118 118 } 119 120 /** 121 * <p> 122 * The {@link TextConsole} ignores this notification. 123 * </p> 124 * 125 * @see de.ugoe.cs.util.console.ConsoleObserver#commandExecuted(java.lang.String) 126 */ 127 @Override 128 public void commandExecuted(String command) { 129 // ignores the notification 130 } 119 131 }
Note: See TracChangeset
for help on using the changeset viewer.