// glassPane.setVisible(true);
setTitle(GUIGlobals.frameTitle);
setIconImage(GUIGlobals.getImage("jabrefIcon").getImage());
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
(new CloseAction()).actionPerformed(null);
}
});