public interface GGExitListener
extends java.util.EventListener
public boolean notifyExit()
{
int rc = JOptionPane.showConfirmDialog(null,
"Are you sure?", "Exit Application", JOptionPane.OK_CANCEL_OPTION);
return (rc == JOptionPane.OK_OPTION);
{
Modifier and Type | Method and Description |
---|---|
boolean |
notifyExit()
Event callback method called when the title bar close button is hit.
|