JDK-6194507 : REGRESSION: java.awt.Choice don't react on Linux
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 6
  • Priority: P2
  • Status: Closed
  • Resolution: Duplicate
  • OS: linux_redhat_3.0
  • CPU: generic
  • Submitted: 2004-11-12
  • Updated: 2010-07-29
  • Resolved: 2004-11-12
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6
6Resolved
Related Reports
Duplicate :  
Description
Found on RedHat EL3, Gnome. This is a regression from Tiger.
Compile and run the following simple testcase will show the problem.

import java.awt.*;
public class choice{
        public static void main(String args[]){
                Frame f = new Frame("awt.Choice");
                Panel p = new Panel();
                Choice c = new Choice();
                c.addItem("one");
                c.addItem("two");
                c.addItem("three");
                p.add(c);
                f.add(p);
                f.setSize(200,200);
                f.setVisible(true);
        }
}


###@###.### 2004-11-12 05:18:51 GMT

Comments
EVALUATION See 6191341 ###@###.### 2004-11-12 08:02:40 GMT
12-11-2004