@Override
public void notifyObservers(Object obj) {
if (obj instanceof FileChooserAction) {
File file = ((FileChooserAction)obj).getFile();
try {
pdfFile = new PdfFile(file);
setChanged();
super.notifyObservers(RupsMenuBar.OPEN);
readerController.startObjectLoader(pdfFile);
}
catch(IOException ioe) {