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

simple.client.MessageProvider Maven / Gradle / Ivy

The newest version!
/*
 * This interface allows to display messages to the user.
 */
package simple.client;

/**
 *
 * @author Javier A. Ortiz Bultrón [email protected]
 */
public interface MessageProvider {

    /**
     * Display a warning message.
     *
     * @param title
     * @param message
     */
    void displayWarning(String title, String message);
    
    /**
     * Display an error message.
     *
     * @param title
     * @param message
     */
    void displayError(String title, String message);
    
    /**
     * Display an informational message.
     *
     * @param title
     * @param message
     */
    void displayInfo(String title, String message);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy