A quick note.

Since a recent refactoring the Jide integration does not work. In ApplicationWindow there are 2 new methods that needs to be overriden like this:

protected JComponent createWindowContentPane()
{
return null;
}

protected void setActivePage(ApplicationPage page){
getFrame().getDockingManager().removeAllFrames();
getFrame().getDockingManager().getWorkspace().remo veAll();
page.getControl();
loadLayoutData(page.getId());
}

This means that if you need to set up a new page you just call setActivePage with an existing JideApplicationPage.

If theres any one, like say Matthias, who has a thought about this being the right way of doing it give us a note. I return null from createWindowContentPane since Jide dockingmanager handles the content.

Cheers
Magnus