1 /*
2  * Copyright (c) 2010, 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 /* @test
25    @bug 6963870
26    @key headful
27    @summary Tests that GTKPainter.ListTableFocusBorder.getBorderInsets()
28             doesn't return null
29    @author Peter Zhelezniakov
30    @run main Test6963870
31 */
32 
33 import java.awt.Insets;
34 import javax.swing.SwingUtilities;
35 import javax.swing.UIManager;
36 import javax.swing.border.Border;
37 
38 public class Test6963870 implements Runnable {
39 
40     final static String[] UI_NAMES = {
41         "List.focusCellHighlightBorder",
42         "List.focusSelectedCellHighlightBorder",
43         "List.noFocusBorder",
44         "Table.focusCellHighlightBorder",
45         "Table.focusSelectedCellHighlightBorder",
46     };
47 
run()48     public void run() {
49         for (String uiName: UI_NAMES) {
50             test(uiName);
51         }
52     }
53 
test(String uiName)54     void test(String uiName) {
55         Border b = UIManager.getBorder(uiName);
56         Insets i = b.getBorderInsets(null);
57         if (i == null) {
58             throw new RuntimeException("getBorderInsets() returns null for " + uiName);
59         }
60     }
61 
main(String[] args)62     public static void main(String[] args) throws Exception {
63         try {
64             UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");
65         } catch (Exception e) {
66             System.out.println("GTKLookAndFeel cannot be set, skipping this test");
67             return;
68         }
69 
70         SwingUtilities.invokeAndWait(new Test6963870());
71     }
72 }
73 
74