1
1
/*
2
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
26
26
import java .awt .GridBagConstraints ;
27
27
import java .awt .GridBagLayout ;
28
28
29
- import javax .swing .JApplet ;
30
29
import javax .swing .JFrame ;
31
30
import javax .swing .JLabel ;
32
31
import javax .swing .JScrollBar ;
37
36
* @test
38
37
* @bug 8039464
39
38
* @summary Tests enabling/disabling of titled border's caption
40
- * @author Sergey Malenkov
41
- * @run applet/manual=yesno Test8039464.html
39
+ * @library /java/awt/regtesthelpers
40
+ * @build PassFailJFrame
41
+ * @run main/manual Test8039464
42
42
*/
43
43
44
- public class Test8039464 extends JApplet {
44
+ public class Test8039464 {
45
+ private static final String INSTRUCTIONS = """
46
+ If the scrollbar thumb is painted correctly in system lookandfeel
47
+ click Pass else click Fail. """ ;
48
+
45
49
static {
46
50
try {
47
51
UIManager .setLookAndFeel (UIManager .getSystemLookAndFeelClassName ());
@@ -50,11 +54,6 @@ public class Test8039464 extends JApplet {
50
54
}
51
55
}
52
56
53
- @ Override
54
- public void init () {
55
- init (this );
56
- }
57
-
58
57
private static void init (Container container ) {
59
58
container .setLayout (new GridBagLayout ());
60
59
GridBagConstraints gbc = new GridBagConstraints ();
@@ -77,16 +76,20 @@ private static void init(Container container) {
77
76
}
78
77
79
78
public static void main (String [] args ) throws Exception {
80
- SwingUtilities .invokeLater (new Runnable () {
81
- @ Override
82
- public void run () {
83
- JFrame frame = new JFrame ("8039464" );
84
- init (frame );
85
- frame .setDefaultCloseOperation (JFrame .DISPOSE_ON_CLOSE );
86
- frame .pack ();
87
- frame .setLocationRelativeTo (null );
88
- frame .setVisible (true );
89
- }
90
- });
79
+ PassFailJFrame .builder ()
80
+ .title ("JScrollBar Instructions" )
81
+ .instructions (INSTRUCTIONS )
82
+ .rows (5 )
83
+ .columns (35 )
84
+ .testUI (Test8039464 ::createTestUI )
85
+ .build ()
86
+ .awaitAndCheck ();
87
+ }
88
+
89
+ private static JFrame createTestUI () {
90
+ JFrame frame = new JFrame ("8039464" );
91
+ init (frame );
92
+ frame .pack ();
93
+ return frame ;
91
94
}
92
95
}
0 commit comments