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

notify.Notifier Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy