/**
* Show message with the specified type and action listener
*/
public static void show(String title, String message, MessageType type, ActionListener actionListener) {
Notification newNotification =
NotificationDisplayer.getDefault().notify(title, type.getIcon(), message, actionListener);
notifications.add(newNotification);
}