本文整理了Java中org.eclipse.swt.widgets.Text.getForeground()
方法的一些代码示例,展示了Text.getForeground()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Text.getForeground()
方法的具体详情如下:
包路径:org.eclipse.swt.widgets.Text
类名称:Text
方法名:getForeground
暂无
代码示例来源:origin: org.eclipse.scout.sdk.s2e/org.eclipse.scout.sdk.s2e.nls
/**
* @return
* @see org.eclipse.swt.widgets.Control#getForeground()
*/
public Color getForeground() {
return m_text.getForeground();
}
代码示例来源:origin: threerings/tripleplay
@Override protected void willDispose () {
if (_font != null) _textCtrl.getFont().dispose();
if (_color != null) _textCtrl.getForeground().dispose();
_font = null;
_color = null;
_textCtrl = null;
}
代码示例来源:origin: org.eclipse/org.eclipse.wst.server.ui
else
serverConfigurationName = toolkit.createText(composite, "" + server.getServerConfiguration().getFullPath());
colorDefault = serverConfigurationName.getForeground();
colorRed = serverConfigurationName.getDisplay().getSystemColor(SWT.COLOR_RED);
if (folder == null || !folder.exists())
代码示例来源:origin: eclipse-jetty/eclipse-jetty-plugin
final Color defaultFilterColor = dependencyFilterText.getForeground();
代码示例来源:origin: threerings/tripleplay
if (_color == null || _color != ncolor) {
if (_color != null) _textCtrl.getForeground().dispose();
_textCtrl.setForeground(convert().color(_color = ncolor));
内容来源于网络,如有侵权,请联系作者删除!