Hi,
i would like to add a SingleCDockable at runtime. Is there a method to do that?
This is want i’m doing at the moment, but i think its not good:
public void addServiceToTab(String name, SingleCDockable dock){
IFView diagService = new DiagnosticServiceView(controller, model);
dock = createDockable(name ,diagService);
information.getBaseLocation().aside();
grid.add(30, 10, 80, 80, dock);
control.getContentArea().deploy(grid);
}