You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Petrenko (JIRA)" <ji...@apache.org> on 2007/10/24 10:55:50 UTC

[jira] Closed: (HARMONY-4761) [classlib][awt] InputEvent.getModifiers() doesn't return modifiers for mouse release event

     [ https://issues.apache.org/jira/browse/HARMONY-4761?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Petrenko closed HARMONY-4761.
------------------------------------


> [classlib][awt] InputEvent.getModifiers() doesn't return modifiers for mouse release event
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-4761
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4761
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: Windows
>            Reporter: Dmitriy Matveev
>            Assignee: Alexey Petrenko
>         Attachments: HARMONY-4761-ModifiersProcessing.patch, HARMONY-4761-ModifiersProcessingTest.patch, HARMONY-4761-MouseEventTest.patch
>
>
> Reproducer:
> import java.awt.Frame;
> import java.awt.Graphics;
> import java.awt.Graphics2D;
> import java.awt.event.MouseEvent;
> import java.awt.event.MouseListener;
> import java.awt.event.WindowAdapter;
> import java.awt.event.WindowEvent;
> public class MouseReleaseTest {
>     public static void main(String[] args) {
>         Frame f = new Frame();
>         f.setBounds(0, 0, 800, 600);
>         f.setVisible(true);
>         f.addWindowListener(new WindowAdapter() {
>             public void windowClosing(WindowEvent ev) {
>                 System.exit(0);
>             }
>         });
>         
>         f.addMouseListener(new MouseListener(){
>             public void mouseReleased(MouseEvent e){
>                 System.out.println(e);
>             }
>             public void mouseClicked(MouseEvent e) { }
>             public void mouseEntered(MouseEvent e) { }
>             public void mouseExited(MouseEvent e) { }
>             public void mousePressed(MouseEvent e) { }
>         });
>     }
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.