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:01:21 UTC

[jira] Created: (HARMONY-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

[classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
---------------------------------------------------------------------------------------------------------------------

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


Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.

Use the following code to reproduce:

import javax.swing.JSeparator;
import javax.swing.plaf.basic.BasicSeparatorUI;

import junit.framework.TestCase;

class BSPUI extends BasicSeparatorUI
{
    public int testt(JSeparator s){
        uninstallDefaults(s);
        return 1;
    }
}

public class Test extends TestCase {
    public void testcase0(){ 
        BSPUI localBasicSeparatorUI = new BSPUI();
        try {
            localBasicSeparatorUI.testt(null);
            System.out.println("works silently");
            assertEquals(true, true);
        } catch (NullPointerException e) {
            e.printStackTrace();
            fail("Unspecified exception thrown:" + e);
        }
    }
}

-- 
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-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Dmitry Irlyanov updated HARMONY-2636:
-------------------------------------

    Attachment: H2636-BasicSeparatorUITest.patch

Regression test

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Alexander Simbirtsev commented on HARMONY-2636:
-----------------------------------------------

Works fine! Thanks for your patience Mark

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Mark Hindess closed HARMONY-2636.
---------------------------------


Verified.  Thanks.

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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] Commented: (HARMONY-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Mark Hindess commented on HARMONY-2636:
---------------------------------------

Did you test this test? I get a stack overflow. I assume you meant to write:

          public void uninstallDefaults(JSeparator s){
            super.uninstallDefaults(s);


> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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] Resolved: (HARMONY-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Mark Hindess resolved HARMONY-2636.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495984.  I made the small correction mentioned in the JIRA comment.  Next time please test your test!  Please confirm they have been applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Alexander Simbirtsev updated HARMONY-2636:
------------------------------------------

    Attachment: basicseparatorui-patch.txt

Here's the proposed fix

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basicseparatorui-patch.txt
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

-- 
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-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't

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

Alexander Simbirtsev updated HARMONY-2636:
------------------------------------------

    Patch Info: [Patch Available]

> [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2636
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2636
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Attachments: basicseparatorui-patch.txt
>
>
> Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently.
> Use the following code to reproduce:
> import javax.swing.JSeparator;
> import javax.swing.plaf.basic.BasicSeparatorUI;
> import junit.framework.TestCase;
> class BSPUI extends BasicSeparatorUI
> {
>     public int testt(JSeparator s){
>         uninstallDefaults(s);
>         return 1;
>     }
> }
> public class Test extends TestCase {
>     public void testcase0(){ 
>         BSPUI localBasicSeparatorUI = new BSPUI();
>         try {
>             localBasicSeparatorUI.testt(null);
>             System.out.println("works silently");
>             assertEquals(true, true);
>         } catch (NullPointerException e) {
>             e.printStackTrace();
>             fail("Unspecified exception thrown:" + e);
>         }
>     }
> }

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