use of org.whole.lang.ui.layout.UnderLeftLayout in project whole by wholeplatform.
the class FeatureFigureWithAttributes method initFigure.
@Override
protected void initFigure() {
initContentPanes(3);
EntityFigure headerFigure = new EntityFigure(new RowLayout().withSpacing(4).withMarginLeft(12));
headerFigure.add(createContentPane(0));
headerFigure.add(createFoldingToggle(2));
shapeFigure = new EntityFigure(new UnderLeftLayout().withSpacing(2));
shapeFigure.add(headerFigure);
shapeFigure.add(createContentPane(1));
add(shapeFigure);
add(createContentPane(2));
}
Aggregations