You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/01/13 18:58:27 UTC

[jira] Assigned: (HARMONY-2600) [classlib][swing] javax.swing.JLayeredPane.setPosition(null, int) does not throw unspecified NPE

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

Mark Hindess reassigned HARMONY-2600:
-------------------------------------

    Assignee: Mark Hindess

> [classlib][swing] javax.swing.JLayeredPane.setPosition(null, int) does not throw unspecified NPE
> ------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2600
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2600
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Harmony-2600-JLayeredPane.patch, Harmony-2600-JLayeredPaneTest.patch
>
>
> Test case:
> --------------
> import javax.swing.JLayeredPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             JLayeredPane lp = new JLayeredPane();
>             lp.setPosition(null, 20);
>             fail("NPE expected");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }

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