-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
5.0
-
x86
-
linux, solaris_2.5.1
Name: rl43681 Date: 02/04/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b31)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b31, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux bobalex.adc.rsv.ricoh.com 2.4.19-16mdk #1 Fri Sep 20 18:15:05 CEST 2002 i686 unknown unknown GNU/Linux
A DESCRIPTION OF THE PROBLEM :
In the code snippet below, the dialog box rendered is decorated, even though undecorated is requested.
This works fine with j2sdk 1.4.2 under Linux, and works fine with j2sdk1.5 beta under Windows. Seems to be a new bug under Linux only.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Write a small main program incorporating the snippet below.
Observe the decorated dialog box.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Dialog box should be undecorated.
ACTUAL -
Dialog box is decorated.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
Sorry, just a snippet:
final JDialog frame = new JDialog((Frame)null, title, true);
...
frame.getRootPane().setPreferredSize(new Dimension(200, 500));
frame.setUndecorated(true);
frame.getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
frame.setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
---------- END SOURCE ----------
(Incident Review ID: 235222)
======================================================================
FULL PRODUCT VERSION :
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b31)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b31, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux bobalex.adc.rsv.ricoh.com 2.4.19-16mdk #1 Fri Sep 20 18:15:05 CEST 2002 i686 unknown unknown GNU/Linux
A DESCRIPTION OF THE PROBLEM :
In the code snippet below, the dialog box rendered is decorated, even though undecorated is requested.
This works fine with j2sdk 1.4.2 under Linux, and works fine with j2sdk1.5 beta under Windows. Seems to be a new bug under Linux only.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Write a small main program incorporating the snippet below.
Observe the decorated dialog box.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Dialog box should be undecorated.
ACTUAL -
Dialog box is decorated.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
Sorry, just a snippet:
final JDialog frame = new JDialog((Frame)null, title, true);
...
frame.getRootPane().setPreferredSize(new Dimension(200, 500));
frame.setUndecorated(true);
frame.getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
frame.setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
---------- END SOURCE ----------
(Incident Review ID: 235222)
======================================================================