/**
* Set the supplied text for the generator description text widget and make its font style
* bold.
* @param text The text for the generator description text widget.
*/
private void setGeneratorLoadingFailureText(String text) {
this.generatorDescriptionText.setText(text);
Font font = this.generatorDescriptionText.getFont();
FontData[] fontData = font.getFontData();
fontData[0].setStyle(SWT.BOLD);
this.generatorDescriptionText.setFont(new Font(this.display, fontData));
}
GeneratorSelectionComposite.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:tap17-muggl-javaee
作者:
评论列表
文章目录