- 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/Console.java
r1 r175 5 5 6 6 import de.ugoe.cs.util.StringTools; 7 8 7 9 8 /** … … 23 22 * 24 23 * @author Steffen Herbold 24 * @version 1.0 25 25 */ 26 26 public final class Console { … … 120 120 } 121 121 for (ConsoleObserver observer : theInstance.observers) { 122 observer.updateText(msg 123 + StringTools.ENDLINE); 122 observer.updateText(msg + StringTools.ENDLINE); 124 123 } 125 124 } … … 157 156 } 158 157 for (ConsoleObserver observer : theInstance.observers) { 159 observer.errStream(errMsg 160 + StringTools.ENDLINE); 158 observer.errStream(errMsg + StringTools.ENDLINE); 161 159 } 162 160 } … … 200 198 * <p> 201 199 * Sends a debug message to all observers containing the message that was 202 * passed to this function and adds an endline to the message. 200 * passed to this function and adds an {@link StringTools#ENDLINE} to the 201 * message. 203 202 * </p> 204 203 * … … 211 210 } 212 211 for (ConsoleObserver observer : theInstance.observers) { 213 observer.trace(traceMsg 214 + StringTools.ENDLINE); 212 observer.trace(traceMsg + StringTools.ENDLINE); 215 213 } 216 214 }
Note: See TracChangeset
for help on using the changeset viewer.