Skip to content
Snippets Groups Projects
Commit 5bd6d274 authored by Gregory Viguier's avatar Gregory Viguier Committed by MADELA Patrick
Browse files

- new method initDockingCoreArea()

parent 93ad5df0
No related branches found
No related tags found
No related merge requests found
......@@ -39,19 +39,24 @@ public class InfoNodeDockingManager extends ADockingManager {
public InfoNodeDockingManager() {
this(new InfoNodeViewFactory(), new PerspectiveFactory());
}
public InfoNodeDockingManager(IViewFactory viewFactory) {
this(viewFactory, new PerspectiveFactory());
}
protected InfoNodeDockingManager(IViewFactory viewFactory, IPerspectiveFactory perspectiveFactory) {
super(viewFactory, perspectiveFactory);
}
@Override
protected void initDockingArea() {
rootWindow = (RootWindow) createNewDockingArea(null);
}
@Override
public JComponent getDockingArea() {
if (rootWindow == null) {
rootWindow = (RootWindow) createNewDockingArea(null);
initDockingArea();
}
return rootWindow;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment