Bug 33891 - unresponsive to mouse and keyboard input
Summary: unresponsive to mouse and keyboard input
Status: RESOLVED WONTFIX
Alias: None
Product: gcc
Classification: Unclassified
Component: libgcj (show other bugs)
Version: 4.3.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-25 05:00 UTC by Debian GCC Maintainers
Modified: 2016-09-30 22:50 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Debian GCC Maintainers 2007-10-25 05:00:30 UTC
[forwarded from http://bugs.debian.org/445930]

this is regression against the classpath generices backport for 4.1/4.2 as used by some distributions, found in 4.3, fixed in the classpath-0.96.1 merge.

import javax.swing.*;
import java.awt.*;

public class Exo1 extends JFrame{
    public Exo1 (){
        setLayout (new FlowLayout ());
        JButton b1 = new JButton ("OK");
        JButton b2 = new JButton ("Cancel");
        getContentPane().add (b1);
        getContentPane().add (b2);

        JCheckBox c = new JCheckBox ("A cocher");
        getContentPane().add (c);

        setDefaultCloseOperation (EXIT_ON_CLOSE);
        setSize (350, 350);
        setVisible (true);
    }
    public static void main (String args[]){
        new Exo1 ();
    }
}
Comment 1 Andrew Pinski 2016-09-30 22:50:00 UTC
Closing as won't fix as libgcj (and the java front-end) has been removed from the trunk.