use of org.knime.workbench.editor2.figures.WorkflowLayout in project knime-core by knime.
the class WorkflowRootEditPart method createFigure.
/**
* Creates the root(="background") figure and sets the appropriate lazout
* manager.
*
* {@inheritDoc}
*/
@Override
protected WorkflowFigure createFigure() {
WorkflowFigure backgroundFigure = new WorkflowFigure();
LayoutManager l = new WorkflowLayout();
backgroundFigure.setLayoutManager(l);
return backgroundFigure;
}
Aggregations