You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexander Simbirtsev (JIRA)" <ji...@apache.org> on 2006/12/12 16:16:21 UTC

[jira] Created: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

[classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
---------------------------------------------------------------------------------------------------------

                 Key: HARMONY-2654
                 URL: http://issues.apache.org/jira/browse/HARMONY-2654
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Alexander Simbirtsev


Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.

Use the following code to reproduce:

import javax.swing.plaf.basic.BasicPopupMenuUI;

import junit.framework.TestCase;

public class Test extends TestCase {
    public void testcase1() {
        BPMUI localBasicPopupMenuUI = new BPMUI();
        try {
            localBasicPopupMenuUI.iinstallKeyboardActions();
        } catch (NullPointerException expectedException) { 
            fail("NPE");
        }
    }
}

class BPMUI extends BasicPopupMenuUI {
    public void iinstallKeyboardActions () {
        installKeyboardActions();
    }
}

-- 
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

        

[jira] Closed: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-2654.
---------------------------------


Verified.  Thanks.

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2654
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2654
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: BasicPopupMenuUI-patch.txt, H2654-BasicPopupMenuUITest.patch
>
>
> Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         BPMUI localBasicPopupMenuUI = new BPMUI();
>         try {
>             localBasicPopupMenuUI.iinstallKeyboardActions();
>         } catch (NullPointerException expectedException) { 
>             fail("NPE");
>         }
>     }
> }
> class BPMUI extends BasicPopupMenuUI {
>     public void iinstallKeyboardActions () {
>         installKeyboardActions();
>     }
> }

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

        

[jira] Commented: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

Posted by "Alexander Simbirtsev (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12464687 ] 

Alexander Simbirtsev commented on HARMONY-2654:
-----------------------------------------------

Works fine. Thanks Mark

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2654
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2654
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: BasicPopupMenuUI-patch.txt, H2654-BasicPopupMenuUITest.patch
>
>
> Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         BPMUI localBasicPopupMenuUI = new BPMUI();
>         try {
>             localBasicPopupMenuUI.iinstallKeyboardActions();
>         } catch (NullPointerException expectedException) { 
>             fail("NPE");
>         }
>     }
> }
> class BPMUI extends BasicPopupMenuUI {
>     public void iinstallKeyboardActions () {
>         installKeyboardActions();
>     }
> }

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

        

[jira] Updated: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

Posted by "Dmitry Irlyanov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2654?page=all ]

Dmitry Irlyanov updated HARMONY-2654:
-------------------------------------

    Attachment: H2654-BasicPopupMenuUITest.patch

Regression test addition

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2654
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2654
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: BasicPopupMenuUI-patch.txt, H2654-BasicPopupMenuUITest.patch
>
>
> Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         BPMUI localBasicPopupMenuUI = new BPMUI();
>         try {
>             localBasicPopupMenuUI.iinstallKeyboardActions();
>         } catch (NullPointerException expectedException) { 
>             fail("NPE");
>         }
>     }
> }
> class BPMUI extends BasicPopupMenuUI {
>     public void iinstallKeyboardActions () {
>         installKeyboardActions();
>     }
> }

-- 
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

        

[jira] Resolved: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess resolved HARMONY-2654.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495992.  I fixed the stack overflow caused by the missing "super." in the test.  Please test your tests!  Please confirm they have been applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2654
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2654
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: BasicPopupMenuUI-patch.txt, H2654-BasicPopupMenuUITest.patch
>
>
> Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         BPMUI localBasicPopupMenuUI = new BPMUI();
>         try {
>             localBasicPopupMenuUI.iinstallKeyboardActions();
>         } catch (NullPointerException expectedException) { 
>             fail("NPE");
>         }
>     }
> }
> class BPMUI extends BasicPopupMenuUI {
>     public void iinstallKeyboardActions () {
>         installKeyboardActions();
>     }
> }

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

        

[jira] Updated: (HARMONY-2654) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE

Posted by "Alexander Simbirtsev (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2654?page=all ]

Alexander Simbirtsev updated HARMONY-2654:
------------------------------------------

    Attachment: BasicPopupMenuUI-patch.txt

Here's the proposed fix

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() throws unspecified NPE
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2654
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2654
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: BasicPopupMenuUI-patch.txt
>
>
> Harmony throws unspecified NullPointerException for javax.swing.plaf.basic.BasicPopupMenuUI.installKeyboardActions() while RI works silently.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         BPMUI localBasicPopupMenuUI = new BPMUI();
>         try {
>             localBasicPopupMenuUI.iinstallKeyboardActions();
>         } catch (NullPointerException expectedException) { 
>             fail("NPE");
>         }
>     }
> }
> class BPMUI extends BasicPopupMenuUI {
>     public void iinstallKeyboardActions () {
>         installKeyboardActions();
>     }
> }

-- 
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