-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b08
-
x86
-
linux
-
Verified
Name: rmT116609 Date: 05/07/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux MyLaptop 2.4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686 i686 i386 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
With jre 1.5.0, when the bottom border of the frame is fairly close to the bottom of the screen, then the choice box appear to hit the bottom of the screen, and cancels the choice selection. If you make the frames' height smaller, then choice appears to work as advertised.
The problem is that if you click on the choice component, the component selections appears, and immedeaitely disappears,before you get an opportunity to make a selection.
This did not happen in 1.4.2.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The choice box should display properly.
ACTUAL -
The choice box flickers on and off.
Test Case:
----------
public class CHOICEbug extends java.awt.Frame {
final static String[] sScales = {
"61ft", "77ft",
"96ft", "153ft",
"191ft", "306ft",
"383ft", "613ft",
"767ft", "0.3mi",
"0.6mi", "1.2mi",
"2.3mi", "4.6mi",
"9.3mi"
};
/** Creates new form CHOICEbug */
public CHOICEbug() {
initComponents();
for ( int i=0; i < sScales.length; i++ ) {
choice.addItem( sScales[i] );
//if ( defScale.equals( Constant.sScales[i] ) )
// foundScale = i;
}
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
private void initComponents() {//GEN-BEGIN:initComponents
java.awt.GridBagConstraints gridBagConstraints;
panel1 = new java.awt.Panel();
canvas1 = new java.awt.Canvas();
canvas1.setSize(600,600);
panel2 = new java.awt.Panel();
label1 = new java.awt.Label();
textField1 = new java.awt.TextField();
label2 = new java.awt.Label();
textField2 = new java.awt.TextField();
choice = new java.awt.Choice();
menuBar1 = new java.awt.MenuBar();
menu1 = new java.awt.Menu();
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
exitForm(evt);
}
});
panel1.setLayout(new java.awt.BorderLayout());
panel1.add(canvas1, java.awt.BorderLayout.CENTER);
add(panel1, java.awt.BorderLayout.CENTER);
panel2.setLayout(new java.awt.GridBagLayout());
label1.setText("label1");
panel2.add(label1, new java.awt.GridBagConstraints());
textField1.setText("textField1");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.insets = new java.awt.Insets(0, 0, 0, 20);
panel2.add(textField1, gridBagConstraints);
label2.setText("label2");
panel2.add(label2, new java.awt.GridBagConstraints());
textField2.setText("textField2");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.insets = new java.awt.Insets(0, 0, 0, 20);
panel2.add(textField2, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridwidth =
java.awt.GridBagConstraints.REMAINDER;
panel2.add(choice, gridBagConstraints);
add(panel2, java.awt.BorderLayout.SOUTH);
menu1.setLabel("Menu");
menuBar1.add(menu1);
setMenuBar(menuBar1);
pack();
}//GEN-END:initComponents
/** Exit the Application */
private void exitForm(java.awt.event.WindowEvent evt)
{//GEN-FIRST:event_exitForm
System.exit(0);
}//GEN-LAST:event_exitForm
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
new CHOICEbug().show();
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private java.awt.Canvas canvas1;
private java.awt.Choice choice;
private java.awt.Label label1;
private java.awt.Label label2;
private java.awt.Menu menu1;
private java.awt.MenuBar menuBar1;
private java.awt.Panel panel1;
private java.awt.Panel panel2;
private java.awt.TextField textField1;
private java.awt.TextField textField2;
// End of variables declaration//GEN-END:variables
REPRODUCIBILITY :
This bug can be reproduced always.
Release Regression From : 1.4.2
The above release value was the last known release where this
bug was known to work. Since then there has been a regression.
(Incident Review ID: 260680)
======================================================================
FULL PRODUCT VERSION :
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux MyLaptop 2.4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686 i686 i386 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
With jre 1.5.0, when the bottom border of the frame is fairly close to the bottom of the screen, then the choice box appear to hit the bottom of the screen, and cancels the choice selection. If you make the frames' height smaller, then choice appears to work as advertised.
The problem is that if you click on the choice component, the component selections appears, and immedeaitely disappears,before you get an opportunity to make a selection.
This did not happen in 1.4.2.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The choice box should display properly.
ACTUAL -
The choice box flickers on and off.
Test Case:
----------
public class CHOICEbug extends java.awt.Frame {
final static String[] sScales = {
"61ft", "77ft",
"96ft", "153ft",
"191ft", "306ft",
"383ft", "613ft",
"767ft", "0.3mi",
"0.6mi", "1.2mi",
"2.3mi", "4.6mi",
"9.3mi"
};
/** Creates new form CHOICEbug */
public CHOICEbug() {
initComponents();
for ( int i=0; i < sScales.length; i++ ) {
choice.addItem( sScales[i] );
//if ( defScale.equals( Constant.sScales[i] ) )
// foundScale = i;
}
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
private void initComponents() {//GEN-BEGIN:initComponents
java.awt.GridBagConstraints gridBagConstraints;
panel1 = new java.awt.Panel();
canvas1 = new java.awt.Canvas();
canvas1.setSize(600,600);
panel2 = new java.awt.Panel();
label1 = new java.awt.Label();
textField1 = new java.awt.TextField();
label2 = new java.awt.Label();
textField2 = new java.awt.TextField();
choice = new java.awt.Choice();
menuBar1 = new java.awt.MenuBar();
menu1 = new java.awt.Menu();
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
exitForm(evt);
}
});
panel1.setLayout(new java.awt.BorderLayout());
panel1.add(canvas1, java.awt.BorderLayout.CENTER);
add(panel1, java.awt.BorderLayout.CENTER);
panel2.setLayout(new java.awt.GridBagLayout());
label1.setText("label1");
panel2.add(label1, new java.awt.GridBagConstraints());
textField1.setText("textField1");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.insets = new java.awt.Insets(0, 0, 0, 20);
panel2.add(textField1, gridBagConstraints);
label2.setText("label2");
panel2.add(label2, new java.awt.GridBagConstraints());
textField2.setText("textField2");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.insets = new java.awt.Insets(0, 0, 0, 20);
panel2.add(textField2, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridwidth =
java.awt.GridBagConstraints.REMAINDER;
panel2.add(choice, gridBagConstraints);
add(panel2, java.awt.BorderLayout.SOUTH);
menu1.setLabel("Menu");
menuBar1.add(menu1);
setMenuBar(menuBar1);
pack();
}//GEN-END:initComponents
/** Exit the Application */
private void exitForm(java.awt.event.WindowEvent evt)
{//GEN-FIRST:event_exitForm
System.exit(0);
}//GEN-LAST:event_exitForm
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
new CHOICEbug().show();
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private java.awt.Canvas canvas1;
private java.awt.Choice choice;
private java.awt.Label label1;
private java.awt.Label label2;
private java.awt.Menu menu1;
private java.awt.MenuBar menuBar1;
private java.awt.Panel panel1;
private java.awt.Panel panel2;
private java.awt.TextField textField1;
private java.awt.TextField textField2;
// End of variables declaration//GEN-END:variables
REPRODUCIBILITY :
This bug can be reproduced always.
Release Regression From : 1.4.2
The above release value was the last known release where this
bug was known to work. Since then there has been a regression.
(Incident Review ID: 260680)
======================================================================
- relates to
-
JDK-6425067 PIT. ItemEvent triggered when clicking a Choice placed at the cornor of the screen
-
- Closed
-
-
JDK-6175418 java/awt/Choice/PopupPosTest fails on Solaris10-Gnome2.0
-
- Closed
-