use of org.whole.lang.ui.figures.TypeNameValueTableRowFigure in project whole by wholeplatform.
the class RepetitionPart method createFigure.
protected IFigure createFigure() {
return new TypeNameValueTableRowFigure() {
@Override
protected IEntityFigure createValueFigure(int paneIndex) {
EntityFigure row = new EntityFigure(new RowLayout());
row.add(createContentPane(paneIndex));
row.add(LabelFactory.createSymbolMediumContentLighter("\u2026"));
row.addContentLight(" ordered");
return row;
}
};
}
Aggregations