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 2007/01/15 09:45:27 UTC

[jira] Commented: (HARMONY-2629) [classlib][swing] javax.swing.plaf.basic.BasicArrowButton.getBackground() returns wrong value

    [ https://issues.apache.org/jira/browse/HARMONY-2629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12464696 ] 

Alexander Simbirtsev commented on HARMONY-2629:
-----------------------------------------------

fine! thanks Mark

> [classlib][swing] javax.swing.plaf.basic.BasicArrowButton.getBackground() returns wrong value
> ---------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2629
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2629
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexander Simbirtsev
>         Assigned To: Mark Hindess
>         Attachments: basicarrowbutton-patch.txt, H2629-BasicArrowButtonTest.patch
>
>
> getBackground() method on RI returns the same value that was passed to the constructor as a "background" parameter:
> BasicArrowButton(int direction,
>                  Color background,
>                  Color shadow,
>                  Color darkShadow,
>                  Color highlight)
> Harmony returns a different value.
> Use the following code to reproduce:
> import java.awt.Color;
> import javax.swing.plaf.basic.BasicArrowButton;
> import junit.framework.TestCase;
> public class Test extends TestCase {
>     public void testcase1() {
>         final Color c = Color.red;
>         BasicArrowButton b = new BasicArrowButton(240, c, c, c, c);            
>         System.out.println("parameter background == " + c);
>         System.out.println("getBackground()==" + b.getBackground()); 
>         assertSame(c, b.getBackground());
>     }
> }

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