notify.Notifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-to-OS-notify Show documentation
Show all versions of java-to-OS-notify Show documentation
Java to Operating System Notification
package notify;
/**
* Notifier Interface
*
* @author francois wauquier
*
*/
public interface Notifier {
/**
* Supported on this Operating System, depending on installed applications
*
* @return
*/
boolean isSupported();
/**
* Notify a message to the user
*
* @param messageType
* @param title
* @param message
*/
void notify(MessageType messageType, String title, String message);
}