com.darwinsys.genericui.GenericUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.genericui;
public interface GenericUI {
/** Display a popup to the user, given a Severity,
* a titlebar title, and a message.
* @param sev The severity
* @param title The dialog title
* @param message The message text
*/
public void popup(Severity sev, String title, String message);
}