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 2006/12/14 16:00:21 UTC

[jira] Created: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

[classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
--------------------------------------------------------------------------------------------------

                 Key: HARMONY-2706
                 URL: http://issues.apache.org/jira/browse/HARMONY-2706
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Alexander Simbirtsev


Compatibility.
There is no mention of any exception in the specification.
Harmony throws unspecified NPE for uninstallDefaults() while RI does not.

Use the following code to reproduce:
import javax.swing.plaf.basic.BasicMenuBarUI;

import junit.framework.TestCase;

public class Test extends TestCase {
    public void testcase1() {                                    
        try {
            testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
            menuBarUI.uninstallDefaults();
        } catch (NullPointerException e) {
            fail("NPE thrown");
        }
    }
}

class testBasicMenuBarUI  extends BasicMenuBarUI {
    public void uninstallDefaults()  {
        super.uninstallDefaults();
    }
}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2706?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess resolved HARMONY-2706.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r496057.  I modified the test slightly to let junit handle the exceptions.  Please confirm they have been applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: Harmony-2706-LookAndFeel.patch, Harmony-2706-LookAndFeelTest.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

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

        

[jira] Closed: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2706?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-2706.
---------------------------------


Verified.  Thanks.

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: Harmony-2706-LookAndFeel.patch, Harmony-2706-LookAndFeelTest.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

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

        

[jira] Updated: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2706?page=all ]

Sergey Krivenko updated HARMONY-2706:
-------------------------------------

    Attachment: Harmony-2706-LookAndFeel.patch

the attached file is a patch that fixes the bug

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: Harmony-2706-LookAndFeel.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Alexander Simbirtsev (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2706?page=all ]

Alexander Simbirtsev updated HARMONY-2706:
------------------------------------------

    Patch Info: [Patch Available]

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: Harmony-2706-LookAndFeel.patch, Harmony-2706-LookAndFeelTest.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2706?page=all ]

Sergey Krivenko updated HARMONY-2706:
-------------------------------------

    Attachment: Harmony-2706-LookAndFeelTest.patch

the attached file is a patch to the test

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: Harmony-2706-LookAndFeel.patch, Harmony-2706-LookAndFeelTest.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2706) [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2706?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12465108 ] 

Sergey Krivenko commented on HARMONY-2706:
------------------------------------------

Verified

> [classlib][swing] javax.swing.plaf.basic.BasicMenuBarUI.uninstallDefaults() throws unspecified NPE
> --------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2706
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2706
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: Harmony-2706-LookAndFeel.patch, Harmony-2706-LookAndFeelTest.patch
>
>
> Compatibility.
> There is no mention of any exception in the specification.
> Harmony throws unspecified NPE for uninstallDefaults() while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicMenuBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {                                    
>         try {
>             testBasicMenuBarUI menuBarUI = new testBasicMenuBarUI();
>             menuBarUI.uninstallDefaults();
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }
> class testBasicMenuBarUI  extends BasicMenuBarUI {
>     public void uninstallDefaults()  {
>         super.uninstallDefaults();
>     }
> }

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