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/09 16:17:28 UTC

[jira] Commented: (HARMONY-2695) [classlib][swing] javax.swing.plaf.basic.BasicCheckBoxMenuItemUI.getMinimumSize(null)/getMaximumSize(null) returns null while RI throws NPE

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

Vasily Zakharov commented on HARMONY-2695:
------------------------------------------

I'll look into this issue.


> [classlib][swing] javax.swing.plaf.basic.BasicCheckBoxMenuItemUI.getMinimumSize(null)/getMaximumSize(null) returns null while RI throws NPE
> -------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2695
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2695
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>
> javax.swing.plaf.basic.BasicCheckBoxMenuItemUI.getMinimumSize(null)/getMaximumSize(null)
> returns null while RI throws NPE.
> Trere is no mention of any exception in the specification.
> Compatibility issue.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicCheckBoxMenuItemUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicCheckBoxMenuItemUI m = new BasicCheckBoxMenuItemUI();
>         try {
>             m.getMaximumSize(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>           //expected
>         }
>     }
>     
>     public void testcase2() {
>         BasicCheckBoxMenuItemUI m = new BasicCheckBoxMenuItemUI();
>         try {
>             m.getMinimumSize(null);             
>             fail("NPE should be thrown");
>         } 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