org.bidib.wizard.api.service.console.ConsoleService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
package org.bidib.wizard.api.service.console;
public interface ConsoleService {
/**
* @return the console model
*/
ConsoleModel getConsoleModel();
/**
* Make sure the console is visible.
*/
void ensureConsoleIsVisible();
/**
* Add new text to console.
*
* @param consoleColor
* the text color
* @param line
* the text to add
*/
void addConsoleLine(ConsoleColor consoleColor, String line);
}