You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Denis Kishenko (JIRA)" <ji...@apache.org> on 2006/11/24 14:30:03 UTC

[jira] Commented: (HARMONY-2305) [classlib][awt] Several components can be active concurrently

    [ http://issues.apache.org/jira/browse/HARMONY-2305?page=comments#action_12452448 ] 
            
Denis Kishenko commented on HARMONY-2305:
-----------------------------------------

JFrame should be changed to Frame 

============ Test ============== 
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Frame;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class Test {

    public static void main(String[] args) {
        
        Frame f = new Frame("Test");
        f.add(BorderLayout.NORTH, new Button("Button 1"));
        f.add(BorderLayout.SOUTH, new Button("Button 2"));

        f.addWindowListener(
                new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {
                        System.exit(0);
                    }
                }
            );          

        f.setSize(200, 80);
        f.setVisible(true);
    }
    
}


> [classlib][awt] Several components can be active concurrently
> -------------------------------------------------------------
>
>                 Key: HARMONY-2305
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2305
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>
> Several components can be active concurrently. For example, 2 buttons can be 
> depressed at one time (one with mouse, one with space key). It may lead 
> unpredictable behavior.
> ============ Test ==============
> import java.awt.BorderLayout;
> import java.awt.Container;
> import java.awt.event.WindowAdapter;
> import java.awt.event.WindowEvent;
> import java.awt.Button;
> import javax.swing.JFrame;
> public class Test {
>     public static void main(String[] args) {
>         
>         JFrame f = new JFrame("Test");
>         Container cp = f.getContentPane();
>         cp.add(BorderLayout.NORTH, new Button("Button 1"));
>         cp.add(BorderLayout.SOUTH, new Button("Button 2"));
>         f.addWindowListener(
>                 new WindowAdapter() {
>                     public void windowClosing(WindowEvent e) {
>                         System.exit(0);
>                     }
>                 }
>             );          
>         f.setSize(200, 80);
>         f.setVisible(true);
>     }
>     
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira