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/13 12:49:21 UTC

[jira] Created: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

[classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
--------------------------------------------------------------------------------------------------------------------

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


javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
while RI throws NPE.

for reproducing:
import junit.framework.TestCase;
import javax.swing.plaf.basic.*;

public class Test extends TestCase {       
    public void testcase1() {
                BasicDesktopIconUI b = new BasicDesktopIconUI();
        try {
            b.getInsets(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: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Mark Hindess resolved HARMONY-2664.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r496041.  Please confirm they have been applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Updated: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Alexei Zakharov updated HARMONY-2664:
-------------------------------------

    Patch Info: [Patch Available]

> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Updated: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Vasily Zakharov updated HARMONY-2664:
-------------------------------------

    Attachment: Harmony-2664-Test.patch
                Harmony-2664.patch

> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Commented: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Vasily Zakharov commented on HARMONY-2664:
------------------------------------------

Thanks Mark, the patch is fine.


> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Commented: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Vasily Zakharov commented on HARMONY-2664:
------------------------------------------

Attached fix and test patches.


> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Closed: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Mark Hindess closed HARMONY-2664.
---------------------------------


Verified.  Thanks.

> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Harmony-2664-Test.patch, Harmony-2664.patch
>
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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

        

[jira] Commented: (HARMONY-2664) [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE

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

Vasily Zakharov commented on HARMONY-2664:
------------------------------------------

I'll look into this issue.


> [classlib][swing] javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result while RI throws NPE
> --------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2664
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2664
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>            Priority: Minor
>
> javax.swing.plaf.basic.BasicDesktopIconUI.getInsets(null) returns valid result
> while RI throws NPE.
> for reproducing:
> import junit.framework.TestCase;
> import javax.swing.plaf.basic.*;
> public class Test extends TestCase {       
>     public void testcase1() {
>                 BasicDesktopIconUI b = new BasicDesktopIconUI();
>         try {
>             b.getInsets(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