Skip to content

Commit 6fa5cea

Browse files
committedDec 4, 2024
8341982: Simplify JButton/bug4323121.java
Reviewed-by: abhiscxk, honkar, dnguyen, achung
1 parent e13206d commit 6fa5cea

File tree

1 file changed

+45
-61
lines changed

1 file changed

+45
-61
lines changed
 
+45-61
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,102 +24,86 @@
2424
/*
2525
* @test
2626
* @bug 4323121
27-
* @summary Tests whether any button that extends JButton always
28-
returns true for isArmed()
27+
* @summary Tests whether a button model always returns true for isArmed()
28+
* when mouse hovers over the button
2929
* @key headful
3030
* @run main bug4323121
3131
*/
3232

33-
import java.awt.Graphics;
3433
import java.awt.Point;
3534
import java.awt.Robot;
35+
import java.awt.event.MouseAdapter;
3636
import java.awt.event.MouseEvent;
37-
import java.awt.event.MouseListener;
38-
import java.awt.event.MouseMotionListener;
37+
import java.util.concurrent.CountDownLatch;
38+
3939
import javax.swing.JButton;
4040
import javax.swing.JFrame;
4141
import javax.swing.SwingUtilities;
4242

43-
public class bug4323121 {
43+
import static java.util.concurrent.TimeUnit.SECONDS;
44+
45+
public final class bug4323121 {
4446

4547
static JFrame frame;
46-
static testButton button;
47-
static volatile Point pt;
48-
static volatile int buttonW;
49-
static volatile int buttonH;
50-
static volatile boolean failed = false;
48+
static JButton button;
49+
50+
static volatile Point buttonCenter;
51+
52+
private static final CountDownLatch mouseEntered = new CountDownLatch(1);
53+
54+
// Usage of this flag is thread-safe because of using the mouseEntered latch
55+
private static boolean modelArmed;
5156

5257
public static void main(String[] args) throws Exception {
5358
Robot robot = new Robot();
5459
robot.setAutoDelay(100);
60+
5561
try {
5662
SwingUtilities.invokeAndWait(() -> {
63+
button = new JButton("gotcha");
64+
button.addMouseListener(new MouseAdapter() {
65+
@Override
66+
public void mouseEntered(MouseEvent e) {
67+
if (button.getModel().isArmed()) {
68+
modelArmed = true;
69+
}
70+
mouseEntered.countDown();
71+
}
72+
});
73+
5774
frame = new JFrame("bug4323121");
58-
button = new testButton("gotcha");
5975
frame.getContentPane().add(button);
76+
6077
frame.pack();
6178
frame.setLocationRelativeTo(null);
6279
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
6380
frame.setVisible(true);
6481
});
82+
6583
robot.waitForIdle();
66-
robot.delay(1000);
84+
6785
SwingUtilities.invokeAndWait(() -> {
68-
pt = button.getLocationOnScreen();
69-
buttonW = button.getSize().width;
70-
buttonH = button.getSize().height;
86+
Point location = button.getLocationOnScreen();
87+
buttonCenter = new Point(location.x + button.getWidth() / 2,
88+
location.y + button.getHeight() / 2);
7189
});
72-
robot.mouseMove(pt.x + buttonW / 2, pt.y + buttonH / 2);
73-
robot.waitForIdle();
74-
if (failed) {
75-
throw new RuntimeException("Any created button returns " +
76-
"true for isArmed()");
90+
91+
robot.mouseMove(buttonCenter.x, buttonCenter.y);
92+
93+
if (!mouseEntered.await(1, SECONDS)) {
94+
throw new RuntimeException("Mouse entered event wasn't received");
95+
}
96+
if (modelArmed) {
97+
throw new RuntimeException("getModel().isArmed() returns true "
98+
+ "when mouse hovers over the button");
7799
}
78100
} finally {
79-
SwingUtilities.invokeAndWait(() -> {
101+
SwingUtilities.invokeAndWait(() -> {
80102
if (frame != null) {
81103
frame.dispose();
82104
}
83105
});
84106
}
85107
}
86108

87-
static class testButton extends JButton implements MouseMotionListener, MouseListener {
88-
public testButton(String label) {
89-
super(label);
90-
addMouseMotionListener(this);
91-
addMouseListener(this);
92-
}
93-
94-
protected void paintComponent(Graphics g) {
95-
super.paintComponent(g);
96-
}
97-
98-
protected void paintBorder(Graphics g) {
99-
}
100-
101-
public void mousePressed(MouseEvent e) {
102-
}
103-
104-
public void mouseDragged(MouseEvent e) {
105-
}
106-
107-
public void mouseMoved(MouseEvent e) {
108-
}
109-
110-
public void mouseReleased(MouseEvent e) {
111-
}
112-
113-
public void mouseEntered(MouseEvent e) {
114-
if (getModel().isArmed()) {
115-
failed = true;
116-
}
117-
}
118-
119-
public void mouseExited(MouseEvent e) {
120-
}
121-
122-
public void mouseClicked(MouseEvent e) {
123-
}
124-
}
125109
}

0 commit comments

Comments
 (0)
Please sign in to comment.