javax.swing.JCheckBox.getForeground()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(242)

本文整理了Java中javax.swing.JCheckBox.getForeground()方法的一些代码示例,展示了JCheckBox.getForeground()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JCheckBox.getForeground()方法的具体详情如下:
包路径:javax.swing.JCheckBox
类名称:JCheckBox
方法名:getForeground

JCheckBox.getForeground介绍

暂无

代码示例

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-team-commons

  1. @Override
  2. public Color getForeground() {
  3. if( isFocusOwner() ) {
  4. if( isAqua )
  5. return UIManager.getColor( "Table.foreground" ); //NOI18N
  6. else if( isGTK || isNimbus )
  7. return UIManager.getColor( "Tree.selectionForeground" ); //NOI18N
  8. return UIManager.getColor( "PropSheet.selectedSetForeground" ); //NOI18N
  9. } else {
  10. if( isAqua ) {
  11. Color res = UIManager.getColor("PropSheet.setForeground"); //NOI18N
  12. if (res == null) {
  13. res = UIManager.getColor("Table.foreground"); //NOI18N
  14. if (res == null) {
  15. res = UIManager.getColor("textText");
  16. if (res == null) {
  17. res = Color.BLACK;
  18. }
  19. }
  20. }
  21. return res;
  22. }
  23. if( isGTK || isNimbus ) {
  24. return new Color( UIManager.getColor( "Menu.foreground" ).getRGB() ); //NOI18N
  25. }
  26. return super.getForeground();
  27. }
  28. }

代码示例来源:origin: it.tidalwave.metadata/it-tidalwave-metadata-viewer

  1. @Test
  2. public void testSetForeground()
  3. {
  4. final Color color = new Color(10, 20, 40);
  5. pane.setForeground(color);
  6. assertEquals(color, pane.getForeground());
  7. assertEquals(color, pane.tfName.getForeground());
  8. assertEquals(color, pane.cbNameAvailable.getForeground());
  9. }
  10. }

代码示例来源:origin: johnjohndoe/ProGuard

  1. reTraceMappingLabel.setForeground(reTraceVerboseCheckBox.getForeground());

相关文章

JCheckBox类方法