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 2006/12/27 23:48:25 UTC

[jira] Commented: (HARMONY-2630) [classlib][swing] javax.swing.JMenu.createActionChangeListener(null) throws unspecified NPE while RI does not

    [ http://issues.apache.org/jira/browse/HARMONY-2630?page=comments#action_12461114 ] 
            
Vasily Zakharov commented on HARMONY-2630:
------------------------------------------

I'll look into this issue.


> [classlib][swing] javax.swing.JMenu.createActionChangeListener(null) throws unspecified NPE while RI does not
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2630
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2630
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.beans.PropertyChangeListener;
> import javax.swing.JMenu;
> import javax.swing.JMenuItem;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         TestJMenu jm = new TestJMenu();
>         jm.createActionChangeListener(null);
>     }
>     static class TestJMenu extends JMenu {
>         public PropertyChangeListener createActionChangeListener(JMenuItem arg0) {
>             return super.createActionChangeListener(arg0);
>         }
>     }
> }
> Harmony output:
> ----------------
> .E
> Time: 0.982
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at javax.swing.JMenu.createActionChangeListener(JMenu.java:172)
> 	at TheTest$TestJMenu.createActionChangeListener(TheTest.java)
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:11)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

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