source: trunk/JavaHelperLib/src/de/ugoe/cs/util/console/listener/IOutputListener.java @ 201

Last change on this file since 201 was 201, checked in by sherbold, 13 years ago
  • Code documentation and minor refactorings
  • Property svn:mime-type set to text/plain
File size: 519 bytes
Line 
1package de.ugoe.cs.util.console.listener;
2
3import de.ugoe.cs.util.console.Console;
4
5/**
6 * <p>
7 * Interface for listeners observing the output stream of the {@link Console}.
8 * </p>
9 *
10 * @author Steffen Herbold
11 * @version 1.0
12 */
13public interface IOutputListener {
14
15        /**
16         * <p>
17         * Receives messages send to the output stream of the {@link Console}.
18         * </p>
19         *
20         * @param newMessage
21         *            message that was send to the console.
22         */
23        public void outputMsg(String newMessage);
24
25}
Note: See TracBrowser for help on using the repository browser.