You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/02/05 22:25:06 UTC

[jira] Updated: (HARMONY-2631) [classlib][swing] javax.swing.JPopupMenu.Separator.isFocusable() returns true while RI returns false

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

Vasily Zakharov updated HARMONY-2631:
-------------------------------------

    Attachment: Harmony-2631-Make.patch
                Harmony-2631-Test.patch
                Harmony-2631-Fix.patch

Thanks, Alexander, that resolved the problem.

Fix and test patches attached.

Also attached a make patch to remove javax/swing/JPopupMenuTest from make/exclude.common.


> [classlib][swing] javax.swing.JPopupMenu.Separator.isFocusable() returns true while RI returns false
> ----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2631
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2631
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Attachments: Harmony-2631-Fix.patch, Harmony-2631-Make.patch, Harmony-2631-Test.patch
>
>
> Test case:
> --------------
> import javax.swing.JPopupMenu;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         JPopupMenu.Separator s = new JPopupMenu.Separator();
>         assertFalse(s.isFocusable());
>     }
> }

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