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/12 13:11:24 UTC

[jira] Created: (HARMONY-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

[classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
-----------------------------------------------------------------------------------------------------------------

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


javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't

Use the following code to reproduce:

import javax.swing.JLabel;
import javax.swing.plaf.basic.BasicLabelUI;

import junit.framework.TestCase;

class testBasicLabelUI extends BasicLabelUI {
    public testBasicLabelUI(){
        super();
    }

    public void uninstallDefaults(JLabel l)  {
        super.uninstallDefaults(l);
    }
}

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

-- 
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-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

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

Mark Hindess resolved HARMONY-2637.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495985.  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.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2637
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2637
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basiclabelui-patch.txt, H2637-BasicLabelUITest.patch
>
>
> javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't
> Use the following code to reproduce:
> import javax.swing.JLabel;
> import javax.swing.plaf.basic.BasicLabelUI;
> import junit.framework.TestCase;
> class testBasicLabelUI extends BasicLabelUI {
>     public testBasicLabelUI(){
>         super();
>     }
>     public void uninstallDefaults(JLabel l)  {
>         super.uninstallDefaults(l);
>     }
> }
> public class Test extends TestCase {
>     public void testcase1() {
>         testBasicLabelUI bu = new testBasicLabelUI();
>         try {
>             bu.uninstallDefaults(null);
>         } catch (NullPointerException e) {
>             fail("NPE 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

        

[jira] Updated: (HARMONY-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

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

Alexander Simbirtsev updated HARMONY-2637:
------------------------------------------

    Attachment: basiclabelui-patch.txt

Here's the proposed fix

> [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2637
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2637
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basiclabelui-patch.txt
>
>
> javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't
> Use the following code to reproduce:
> import javax.swing.JLabel;
> import javax.swing.plaf.basic.BasicLabelUI;
> import junit.framework.TestCase;
> class testBasicLabelUI extends BasicLabelUI {
>     public testBasicLabelUI(){
>         super();
>     }
>     public void uninstallDefaults(JLabel l)  {
>         super.uninstallDefaults(l);
>     }
> }
> public class Test extends TestCase {
>     public void testcase1() {
>         testBasicLabelUI bu = new testBasicLabelUI();
>         try {
>             bu.uninstallDefaults(null);
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }

-- 
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-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

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

Alexander Simbirtsev commented on HARMONY-2637:
-----------------------------------------------

Works fine! 10x Mark

> [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2637
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2637
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basiclabelui-patch.txt, H2637-BasicLabelUITest.patch
>
>
> javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't
> Use the following code to reproduce:
> import javax.swing.JLabel;
> import javax.swing.plaf.basic.BasicLabelUI;
> import junit.framework.TestCase;
> class testBasicLabelUI extends BasicLabelUI {
>     public testBasicLabelUI(){
>         super();
>     }
>     public void uninstallDefaults(JLabel l)  {
>         super.uninstallDefaults(l);
>     }
> }
> public class Test extends TestCase {
>     public void testcase1() {
>         testBasicLabelUI bu = new testBasicLabelUI();
>         try {
>             bu.uninstallDefaults(null);
>         } catch (NullPointerException e) {
>             fail("NPE 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

        

[jira] Updated: (HARMONY-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

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

Dmitry Irlyanov updated HARMONY-2637:
-------------------------------------

    Attachment: H2637-BasicLabelUITest.patch

Regression test addition

> [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2637
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2637
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basiclabelui-patch.txt, H2637-BasicLabelUITest.patch
>
>
> javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't
> Use the following code to reproduce:
> import javax.swing.JLabel;
> import javax.swing.plaf.basic.BasicLabelUI;
> import junit.framework.TestCase;
> class testBasicLabelUI extends BasicLabelUI {
>     public testBasicLabelUI(){
>         super();
>     }
>     public void uninstallDefaults(JLabel l)  {
>         super.uninstallDefaults(l);
>     }
> }
> public class Test extends TestCase {
>     public void testcase1() {
>         testBasicLabelUI bu = new testBasicLabelUI();
>         try {
>             bu.uninstallDefaults(null);
>         } catch (NullPointerException e) {
>             fail("NPE thrown");
>         }
>     }
> }

-- 
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] Closed: (HARMONY-2637) [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't

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

Mark Hindess closed HARMONY-2637.
---------------------------------


Verified.  Thanks.

> [classlib][swing] javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(JLabel label) throws NPE while RI doesn't
> -----------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2637
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2637
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basiclabelui-patch.txt, H2637-BasicLabelUITest.patch
>
>
> javax.swing.plaf.basic.BasicLabelUI.uninstallDefaults(null) throws unspecified NPE while RI doesn't
> Use the following code to reproduce:
> import javax.swing.JLabel;
> import javax.swing.plaf.basic.BasicLabelUI;
> import junit.framework.TestCase;
> class testBasicLabelUI extends BasicLabelUI {
>     public testBasicLabelUI(){
>         super();
>     }
>     public void uninstallDefaults(JLabel l)  {
>         super.uninstallDefaults(l);
>     }
> }
> public class Test extends TestCase {
>     public void testcase1() {
>         testBasicLabelUI bu = new testBasicLabelUI();
>         try {
>             bu.uninstallDefaults(null);
>         } catch (NullPointerException e) {
>             fail("NPE 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