All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.api.service.console.ConsoleService Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy