- Timestamp:
- 09/09/11 23:52:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java
r1 r175 6 6 * <p> 7 7 * Implements a simple console observer that prints normal text to 8 * <code>stdout</code>, errors to <code>stderr</code> and reads from 9 * <code>stdin</code>. 8 * {@code stdout}, errors to {@code stderr} and reads from {@code stdin}. 10 9 * </p> 11 10 * 12 11 * @author Steffen Herbold 12 * @version 1.0 13 13 */ 14 14 public class TextConsole implements ConsoleObserver { … … 32 32 /** 33 33 * <p> 34 * Prints messages to <code>stdout</code>.34 * Prints messages to {@code stdout}. 35 35 * </p> 36 36 * … … 43 43 /** 44 44 * <p> 45 * Prints messages to <code>stderr</code>.45 * Prints messages to {@code stderr}. 46 46 * </p> 47 47 * … … 55 55 /** 56 56 * <p> 57 * Prints the stack race of an exception to <code>stderr</code>57 * Prints the stacktrace of an exception to {@code stderr}. 58 58 * </p> 59 59 * … … 67 67 /** 68 68 * <p> 69 * Prints messages to <code>stdout</code>. These messages are only printed,70 * ifthe console is run in debug mode.69 * Prints messages to {@code stdout}. These messages are only printed, if 70 * the console is run in debug mode. 71 71 * </p> 72 72 */ … … 82 82 * Starts a new TextConsole. If the text console is started, it can be used 83 83 * not only to print message, but also to execute commands by reading 84 * <code>stdin</code>.84 * {@code stdin}. 85 85 * </p> 86 86 * … … 103 103 /** 104 104 * <p> 105 * Reads a new command from <code>stdin</code>.105 * Reads a new command from {@code stdin}. 106 106 * </p> 107 107 *
Note: See TracChangeset
for help on using the changeset viewer.