You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Dmitry Irlyanov (JIRA)" <ji...@apache.org> on 2006/12/22 15:42:22 UTC

[jira] Updated: (HARMONY-2854) [classlib][swing] j.s.plaf.basic.BasicScrollBarUI.getTrackBounds() returns not null on Harmony

     [ http://issues.apache.org/jira/browse/HARMONY-2854?page=all ]

Dmitry Irlyanov updated HARMONY-2854:
-------------------------------------

    Attachment: H2854.java

The same issue refered to getThumbBounds() method.

I've prepared a unit test and a patch. I'll attach the patch after verification.

> [classlib][swing] j.s.plaf.basic.BasicScrollBarUI.getTrackBounds() returns not null on Harmony
> ----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2854
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2854
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexey A. Ivanov
>            Priority: Minor
>         Attachments: H2854.java
>
>
> ====== Code to Reproduce ======
> import java.awt.Rectangle;
> import javax.swing.plaf.basic.BasicScrollBarUI;
> public class Test {
>     private static class TestBasicScrollBarUI extends BasicScrollBarUI {
>         @Override
>         public Rectangle getTrackBounds() {
>             return super.getTrackBounds(); 
>         } 
>     }
>     public static void main(String[] args) {
>         TestBasicScrollBarUI sbr = new TestBasicScrollBarUI();
>         System.err.println("res=" + sbr.getTrackBounds());
>     }
> }
> ======= end of code =======
> ------- Harmony -------
> res=java.awt.Rectangle[x=0,y=0,width=0,height=0]
> --------------
> ------- RI -------
> res=null
> --------------

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