break;
case AbstractViewEvent.CLOSE:
closeEditor(editor);
break;
case AbstractViewEvent.ABOUT:
AboutUI about = null;
if (getMediator().getUi() != null
&& getMediator().getUi().getComponent() instanceof JFrame)
{
about = new AboutUI((JFrame) getMediator().getUi());
} else
{
about = new AboutUI();
}
about.setVisible(true);
break;
case AbstractViewEvent.BUGREPORT:
BugReportUI bugreport = null;
if (getMediator().getUi() != null