File tree 2 files changed +11
-2
lines changed
javax/swing/JFileChooser/6738668
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -718,7 +718,6 @@ javax/swing/SwingUtilities/TestBadBreak/TestBadBreak.java 8160720 generic-all
718
718
javax/swing/text/DefaultCaret/HidingSelection/HidingSelectionTest.java 8194048 windows-all
719
719
javax/swing/text/DefaultCaret/HidingSelection/MultiSelectionTest.java 8213562 linux-all
720
720
javax/swing/JFileChooser/6798062/bug6798062.java 8146446 windows-all
721
- javax/swing/JFileChooser/6738668/bug6738668.java 8194946 generic-all
722
721
javax/swing/JPopupMenu/4870644/bug4870644.java 8194130 macosx-all,linux-all
723
722
javax/swing/PopupFactory/6276087/NonOpaquePopupMenuTest.java 8065099,8208565 macosx-all,linux-all
724
723
javax/swing/dnd/8139050/NativeErrorsInTableDnD.java 8202765 macosx-all,linux-all
Original file line number Diff line number Diff line change 22
22
*/
23
23
24
24
/* @test
25
+ @key headful
25
26
@bug 6738668 6962725
26
27
@summary JFileChooser cannot be created under SecurityManager
27
28
@author Pavel Porvatov
31
32
import java .io .File ;
32
33
import javax .swing .JFileChooser ;
33
34
import javax .swing .UIManager ;
35
+ import javax .swing .UnsupportedLookAndFeelException ;
34
36
35
37
public class bug6738668 {
36
38
public static void main (String [] args ) throws Exception {
37
39
for (UIManager .LookAndFeelInfo lookAndFeelInfo : UIManager .getInstalledLookAndFeels ()) {
38
- UIManager .setLookAndFeel (lookAndFeelInfo .getClassName ());
40
+ try {
41
+ UIManager .setLookAndFeel (lookAndFeelInfo .getClassName ());
42
+ } catch (UnsupportedLookAndFeelException ignored ) {
43
+ System .out .println ("Unsupported L&F: " + lookAndFeelInfo .getClassName ());
44
+ continue ;
45
+ } catch (ClassNotFoundException | InstantiationException
46
+ | IllegalAccessException e ) {
47
+ throw new RuntimeException (e );
48
+ }
39
49
40
50
String tmpdir = System .getProperty ("java.io.tmpdir" );
41
51
System .out .println ("tmp dir " + tmpdir );
You can’t perform that action at this time.
0 commit comments