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

[jira] Resolved: (HARMONY-2677) [classlib][swing] javax.swing.plaf.basic.BasicProgressBarUI.startAnimationTimer() throws unspecified NPE while RI does not

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

Mark Hindess resolved HARMONY-2677.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

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

> [classlib][swing] javax.swing.plaf.basic.BasicProgressBarUI.startAnimationTimer() throws unspecified  NPE while RI does not
> ---------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2677
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2677
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: Harmony-2677-BasicProgressBarUI.patch, Harmony-2677-BasicProgressBarUITest.patch
>
>
> Harmony for startAnimationTimer/stopAnimationTimer() protected methods
> throws unspecified  NPE while RI does not.
> Use the following code to reproduce:
> import javax.swing.plaf.basic.BasicProgressBarUI;
> import junit.framework.TestCase;
> public class Test extends TestCase {       
>     public void testcase1() { 
>         try {
>             testBasicProgressBarUI pb = new testBasicProgressBarUI();
>             pb.startAnimationTimer();
>         } catch (NullPointerException e) { 
>             fail("NPE thrown");
>         }
>     }
>     
>     public void testcase2() { 
>         try {                   
>             testBasicProgressBarUI pb = new testBasicProgressBarUI();
>             pb.stopAnimationTimer();
>         } catch (NullPointerException e) { 
>             fail("NPE thrown");
>         }
>     }                                                                        
> }
> class testBasicProgressBarUI extends BasicProgressBarUI {
>      public void startAnimationTimer()  {
>          super.startAnimationTimer();   
>      }
>      public void stopAnimationTimer()  {
>          super.stopAnimationTimer();    
>      }   
> }

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