本文整理了Java中javax.swing.JCheckBox.getForeground()
方法的一些代码示例,展示了JCheckBox.getForeground()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JCheckBox.getForeground()
方法的具体详情如下:
包路径:javax.swing.JCheckBox
类名称:JCheckBox
方法名:getForeground
暂无
代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-team-commons
@Override
public Color getForeground() {
if( isFocusOwner() ) {
if( isAqua )
return UIManager.getColor( "Table.foreground" ); //NOI18N
else if( isGTK || isNimbus )
return UIManager.getColor( "Tree.selectionForeground" ); //NOI18N
return UIManager.getColor( "PropSheet.selectedSetForeground" ); //NOI18N
} else {
if( isAqua ) {
Color res = UIManager.getColor("PropSheet.setForeground"); //NOI18N
if (res == null) {
res = UIManager.getColor("Table.foreground"); //NOI18N
if (res == null) {
res = UIManager.getColor("textText");
if (res == null) {
res = Color.BLACK;
}
}
}
return res;
}
if( isGTK || isNimbus ) {
return new Color( UIManager.getColor( "Menu.foreground" ).getRGB() ); //NOI18N
}
return super.getForeground();
}
}
代码示例来源:origin: it.tidalwave.metadata/it-tidalwave-metadata-viewer
@Test
public void testSetForeground()
{
final Color color = new Color(10, 20, 40);
pane.setForeground(color);
assertEquals(color, pane.getForeground());
assertEquals(color, pane.tfName.getForeground());
assertEquals(color, pane.cbNameAvailable.getForeground());
}
}
代码示例来源:origin: johnjohndoe/ProGuard
reTraceMappingLabel.setForeground(reTraceVerboseCheckBox.getForeground());
内容来源于网络,如有侵权,请联系作者删除!