You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/01/31 15:48:07 UTC

[jira] Assigned: (HARMONY-2663) [classlib][swing] javax.swing.plaf.basic.BasicMenuUI is inconsistent with RI

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

Alexei Zakharov reassigned HARMONY-2663:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] javax.swing.plaf.basic.BasicMenuUI is inconsistent with RI
> ----------------------------------------------------------------------------
>
>                 Key: HARMONY-2663
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2663
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2663-1-Test.patch, Harmony-2663-1-Test.patch, Harmony-2663-1.patch, Harmony-2663-2-Test.patch, Harmony-2663-2.patch
>
>
> 1) Harmony throws ClassCastException for getMaximumSize(new JOptionPane()) while RI throws NPE.
> 2) Harmony returns non-null value for createMenuListener() method while RI return null
> Use the following code to reproduce:
> import javax.swing.JComponent;
> import javax.swing.JMenu;
> import javax.swing.JOptionPane;
> import javax.swing.event.MenuListener;
> import javax.swing.plaf.basic.BasicMenuUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         testBasicMenuUI bm = new testBasicMenuUI();         
>         assertNull(bm.createMenuListener(new JMenu()));
>     }
>     
>     public void testcase2() {                                    
>         try {   
>            BasicMenuUI bm = new BasicMenuUI();
>            System.err.println(bm.getMaximumSize(new JOptionPane()));
>         } catch (ClassCastException e) { 
>             fail("ClassCastException thrown");
>         } catch (NullPointerException e) {
>             // expected
>         }     
>     }
> }                      
> class testBasicMenuUI extends BasicMenuUI {
>      public MenuListener createMenuListener(JComponent l)  {
>          return super.createMenuListener(l);
>      }     
> } 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.