Package org.eclipse.debug.core
Interface IStreamListener
-
public interface IStreamListener
A stream listener is notified of changes to a stream monitor.Clients may implement this interface.
- See Also:
IStreamMonitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
streamAppended(String text, IStreamMonitor monitor)
Notifies this listener that text has been appended to the given stream monitor.
-
-
-
Method Detail
-
streamAppended
void streamAppended(String text, IStreamMonitor monitor)
Notifies this listener that text has been appended to the given stream monitor.- Parameters:
text
- the appended textmonitor
- the stream monitor to which text was appended
-
-