Search in sources :

Example 1 with TextualFigure

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);
}
Also used : TextualFigure(org.whole.lang.ui.figures.TextualFigure) EntityLabel(org.whole.lang.ui.figures.EntityLabel)

Example 2 with TextualFigure

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);
}
Also used : TextualFigure(org.whole.lang.ui.figures.TextualFigure) EntityLabel(org.whole.lang.ui.figures.EntityLabel)

Aggregations

EntityLabel (org.whole.lang.ui.figures.EntityLabel)2 TextualFigure (org.whole.lang.ui.figures.TextualFigure)2