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/01/07 14:13:27 UTC

[jira] Commented: (HARMONY-2896) [classlib][swing] Compatibility: javax.swing.plaf.basic.BasicComboBoxUI. getAccessibleChildrenCount(null) does not throw unspecified NPE

    [ https://issues.apache.org/jira/browse/HARMONY-2896?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12462822 ] 

Vasily Zakharov commented on HARMONY-2896:
------------------------------------------

I'll look into this issue.


> [classlib][swing] Compatibility: javax.swing.plaf.basic.BasicComboBoxUI. getAccessibleChildrenCount(null) does not throw unspecified NPE
> ----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2896
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2896
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Ilya Okomin
>            Priority: Minor
>
> There is no mention of any exception in the specification.
> RI throws unspecified NPE for javax.swing.plaf.basic.BasicComboBoxUI.getAccessibleChildrenCount(null) while Harmony does not.
> Next test case passes on RI and fails on Harmony:
> --------- test.java ----------
> import javax.swing.plaf.basic.BasicComboBoxUI;
> import junit.framework.TestCase;
> import junit.textui.TestRunner;
> public class test extends TestCase {
>     public static void main(String args[]) {
>         TestRunner.run(test.class);
>     }
>     public void testRun() {
>         BasicComboBoxUI cb = new BasicComboBoxUI();
>         try {
>             cb.getAccessibleChildrenCount(null);
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>             // expected
>         }
>     }
> }
> --------------------------------

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