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:32:26 UTC

[jira] Assigned: (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 reassigned HARMONY-4062:
------------------------------------

    Assignee: Tim Ellison

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