()
| 317 | } |
| 318 | |
| 319 | private void setLookAndFeel() { |
| 320 | try { |
| 321 | for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) { |
| 322 | if ("Nimbus".equals(info.getName())) { |
| 323 | UIManager.setLookAndFeel(info.getClassName()); |
| 324 | UIManager.put("control", Color.WHITE); // overall background |
| 325 | break; |
| 326 | } |
| 327 | } |
| 328 | } catch (Exception e) { |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Initialize the contents of the frame. |
no test coverage detected