You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2007/06/06 14:36:26 UTC

[jira] Resolved: (HARMONY-4062) [classlib][beans]org.apache.harmony.beans.editors.ColorEditor lacks support for setAsText

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

Tim Ellison resolved HARMONY-4062.
----------------------------------

    Resolution: Fixed

Thanks Leo.

Patch applied to BEANS module at repo revision r544826.

Please can you check that it was applied as you expected.

p.s.  Please set your editor to use spaces rather than tabs for indenting since that is our preferred style.

> [classlib][beans]org.apache.harmony.beans.editors.ColorEditor lacks support for setAsText
> -----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-4062
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4062
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Leo Li
>            Assignee: Tim Ellison
>         Attachments: patch-4062.diff
>
>
> Here is a testcase:
> public void test(){
>                                           PropertyEditor propertyEditor = PropertyEditorManager
> 				.findEditor(Color.class);		
> 		propertyEditor.setValue(new Color(0,0,0));
> 		propertyEditor.setAsText("1,2,3");
> 		Color newColor = new Color(1, 2, 3);
> 		assertEquals(newColor, propertyEditor.getValue());
> }
> RI passes.
> Harmony fails.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.