-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.3.0
-
x86
-
windows_2000
Name: jk109818 Date: 03/24/2003
FULL PRODUCT VERSION :
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
Service Pack 1
A DESCRIPTION OF THE PROBLEM :
All three components of JRootPane (i.e. LayeredPane,
ContentPane and GlassPane) have names started with "null."
(i.e. "null.layeredPane", "null.contentPane", "null.glassPan
e") instead of nulls.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Create a new instance of JRootPane.
2. Get its GlassPane and get the name of the later.
EXPECTED VERSUS ACTUAL BEHAVIOR :
Result should be null. But it is the non null
string "null.glassPane".
REPRODUCIBILITY :
This bug can be reproduced often.
---------- BEGIN SOURCE ----------
String name = new JRootPane().getGlassPane().getName();
if ( name == null )
System.out.println( "null" );
else
System.out.println( '"' + name + '"' );
// Should be null
// but will be "null.glassPane"
---------- END SOURCE ----------
(Review ID: 180064)
======================================================================
FULL PRODUCT VERSION :
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
Service Pack 1
A DESCRIPTION OF THE PROBLEM :
All three components of JRootPane (i.e. LayeredPane,
ContentPane and GlassPane) have names started with "null."
(i.e. "null.layeredPane", "null.contentPane", "null.glassPan
e") instead of nulls.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Create a new instance of JRootPane.
2. Get its GlassPane and get the name of the later.
EXPECTED VERSUS ACTUAL BEHAVIOR :
Result should be null. But it is the non null
string "null.glassPane".
REPRODUCIBILITY :
This bug can be reproduced often.
---------- BEGIN SOURCE ----------
String name = new JRootPane().getGlassPane().getName();
if ( name == null )
System.out.println( "null" );
else
System.out.println( '"' + name + '"' );
// Should be null
// but will be "null.glassPane"
---------- END SOURCE ----------
(Review ID: 180064)
======================================================================