-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
5.0
-
Fix Understood
-
x86
-
windows_2000
Name: js151677 Date: 07/01/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
JOptionPane does not select Internal Frame when parent frame was closed
when JOptionPane.showInternalInputDialog is called to display an Internal Frame in a window that is not already open it does not select the internal frame (it has the call to setVisible and setSelected the wrong way round)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
run code
close the right frame
click the button at the bottom of the window
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
the internal frame to be selected
ACTUAL -
the internal frame is not selected
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Test {
public static void main(String s[]) {
final JButton leftFrameButton = new JButton(new AbstractAction("Show
Internal Input Dialog...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog((JButton)anEvent.getSource(), "What
is your name?");
}
});
final JButton windowButton = new JButton(new AbstractAction("Show Internal
Input Dialog...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog((JButton)anEvent.getSource(), "What
is your name?");
}
});
final JButton rightFrameButton = new JButton(new AbstractAction("Show
Internal Input Dialog...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog((JButton)anEvent.getSource(), "What
is your name?");
}
});
JFrame leftFrame = new JFrame();
leftFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
leftFrame.getContentPane().add(leftFrameButton, BorderLayout.NORTH);
leftFrame.getContentPane().add(new JButton(new AbstractAction("Show Internal
Input Dialog in Window...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog(windowButton, "What is your name?");
}
}), BorderLayout.SOUTH);
leftFrame.setSize(300, 300);
leftFrame.setLocation(25, 100);
leftFrame.setVisible(true);
JWindow window = new JWindow();
window.getContentPane().add(windowButton, BorderLayout.NORTH);
window.getContentPane().add(new JButton(new AbstractAction("Show Internal
Input Dialog in Right Frame...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog(rightFrameButton, "What is your
name?");
}
}), BorderLayout.SOUTH);
window.setSize(300, 300);
window.setLocation(350, 100);
window.setVisible(true);
JFrame rightFrame = new JFrame();
rightFrame.getContentPane().add(rightFrameButton, BorderLayout.NORTH);
rightFrame.getContentPane().add(new JButton(new AbstractAction("Show
Internal Input Dialog in Left Frame...") {
public void actionPerformed(ActionEvent anEvent) {
JOptionPane.showInternalInputDialog(leftFrameButton, "What is your
name?");
}
}), BorderLayout.SOUTH);
rightFrame.setSize(300, 300);
rightFrame.setLocation(675, 100);
rightFrame.setVisible(true);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
copy the code from JOptionPane and re-order the lines of setVisible and setSelected
(Incident Review ID: 280239)
======================================================================