summaryrefslogtreecommitdiffstats
path: root/rba.tool.core/src/rba/tool/core/console/IConsoleManager.java
blob: 821e6f9ead11fd265a9e249933a34ceab8253f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package rba.tool.core.console;

public interface IConsoleManager {

    void output(String message, String notifierId);

    void clearConsole();

    void warning(String message, String notifierId);

    void addHook(IConsoleHook hook, String targetNotifierId);

    void removeHook(IConsoleHook hook, String targetNotifierId);
}