1 /*
   2  * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * Portions Copyright (c) 2012 IBM Corporation
  26  */
  27 
  28 /* @test
  29  * @bug 7089914
  30  * @summary Focus on image icons are not visible in javaws cache with high contrast mode
  31  * @author Sean Chou
  32  */
  33 
  34 import javax.swing.*;
  35 import java.lang.reflect.Field;
  36 
  37 public class bug7089914 {
  38 
  39     public static void main(String[] args) throws Exception {
  40         try {
  41             UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
  42         } catch (Exception e) {
  43             System.out.println("Not WindowsLookAndFeel, test skipped");
  44 
  45             return;
  46         }
  47 
  48         SwingUtilities.invokeAndWait(new Runnable() {
  49             @Override
  50             public void run() {
  51 
  52                 JRadioButton rb = new JRadioButton();
  53 
  54                 if (!"com.sun.java.swing.plaf.windows.WindowsRadioButtonUI".equals(rb.getUI().getClass().getName())) {
  55                     throw new RuntimeException("Unexpected UI class of JRadioButton");
  56                 }
  57 
  58                 try {
  59                     Field initializedField = rb.getUI().getClass().getDeclaredField("initialized");
  60                     initializedField.setAccessible(true);
  61 
  62                     if (!initializedField.getBoolean(rb.getUI())) {
  63                         throw new RuntimeException("initialized is false");
  64                     }
  65 
  66                     rb.getUI().uninstallUI(rb);
  67 
  68                     if (initializedField.getBoolean(rb.getUI())) {
  69                         throw new RuntimeException("initialized is true");
  70                     }
  71                 } catch (NoSuchFieldException | IllegalAccessException e) {
  72                     throw new RuntimeException(e);
  73                 }
  74             }
  75         });
  76     }
  77 }