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

Add new constructor for specific ViewFactory

parent 499ff23b
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,11 @@ 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);
}
......
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