use of org.whole.lang.ui.figures.TextualFigure in project whole by wholeplatform.
the class SmallIdentifierTextualEntityPart method createFigure.
protected IFigure createFigure() {
EntityLabel label = LabelFactory.createMonospaceSmall();
label.setForegroundColor(FigureConstants.identifiersColor);
return new TextualFigure(label);
}
use of org.whole.lang.ui.figures.TextualFigure in project whole by wholeplatform.
the class SmallContentTextualEntityPart method createFigure.
protected IFigure createFigure() {
EntityLabel label = LabelFactory.createMonospaceSmall();
label.setForegroundColor(FigureConstants.contentColor);
return new TextualFigure(label);
}
Aggregations