Skip to content

Instantly share code, notes, and snippets.

@abdalimran
Created December 22, 2016 14:43
Show Gist options
  • Save abdalimran/b13b11bc87ab0265e5ef310cee723375 to your computer and use it in GitHub Desktop.
Save abdalimran/b13b11bc87ab0265e5ef310cee723375 to your computer and use it in GitHub Desktop.
import javax.swing.JOptionPane;
public class NotifyEvent
{
NotifyEvent(String msg)
{
JOptionPane.showMessageDialog(null,msg,
"Event Notification",
JOptionPane.PLAIN_MESSAGE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment