/** Creates new form NotificationDialog */
public NotificationDialog(java.awt.Frame parent, boolean modal, Notification notification) {
super(parent, modal);
this.notification = notification;
initComponents();
notificationDialogHelper = new NotificationDialogHelper(this);
showNotification();
this.setIconImage(OECReception.applicationIcon());
this.getRootPane().setDefaultButton(doneButton);
addEscapeListener();
}