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 2007/01/15 10:55:27 UTC

[jira] Commented: (HARMONY-2604) [classlib][swing] javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction.actionPerformed(null) throws NPE

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

Alexander Simbirtsev commented on HARMONY-2604:
-----------------------------------------------

works fine. thanks

> [classlib][swing] javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction.actionPerformed(null) throws NPE
> ----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2604
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2604
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: H2588-H2604-H2608-BasicInternalFrameTitlePaneTest.patch, H2604-BasicInternalFrameTitlePaneTest.patch, sizeaction-patch-2.txt
>
>
> javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction.actionPerformed(null)
> throws unspecified NPE while RI does not.
> Here's the code to reproduce:
> import javax.swing.JInternalFrame;
> import javax.swing.plaf.basic.BasicInternalFrameTitlePane;
> import javax.swing.plaf.metal.MetalInternalFrameTitlePane;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         String str = "test string";
>         JInternalFrame jf = new JInternalFrame(str);
>         MetalInternalFrameTitlePane jp = new MetalInternalFrameTitlePane(jf);
>         BasicInternalFrameTitlePane.SizeAction m = jp.new SizeAction();
>         try {
>             m.actionPerformed(null);
>         } catch (NullPointerException e) {
>             fail("NPE shouldn't be thrown");
>         }
>     }
> }

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