[gatein-issues] [JBoss JIRA] Commented: (GTNPORTAL-1910) UIFormCheckBoxInput.setValue() doesn't parse String

Trong Tran (JIRA) jira-events at lists.jboss.org
Thu Jun 2 22:26:59 EDT 2011


    [ https://issues.jboss.org/browse/GTNPORTAL-1910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606193#comment-12606193 ] 

Trong Tran commented on GTNPORTAL-1910:
---------------------------------------

The current implementation of UIFormCheckBoxInput is not good. Ideally it should only accept Boolean value ( or boolean in primitive type ) BUT not anything else.

So i suggest you to change to use Boolean instead of String in the case. We would also improve UIFormCheckBoxInput with better constraint in API.

> UIFormCheckBoxInput.setValue() doesn't parse String
> ---------------------------------------------------
>
>                 Key: GTNPORTAL-1910
>                 URL: https://issues.jboss.org/browse/GTNPORTAL-1910
>             Project: GateIn Portal
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: WebUI
>    Affects Versions: 3.1.0-GA
>            Reporter: Toshiya Kobayashi
>              Labels: portal-s54
>             Fix For: 3.2.0-GA
>
>
> If you call org.exoplatform.webui.form.UIFormCheckBoxInput.setValue() with a String "true", it will be evaluated as "false" because it parses only Boolean, not String.
>    public UIFormInput setValue(T value)
>    {
>       if (value == null)
>          return super.setValue(value);
>       if (value instanceof Boolean)
>       {
>          checked = ((Boolean)value).booleanValue();
>       }
>       else if (boolean.class.isInstance(value))
>       {
>          checked = boolean.class.cast(value);
>       }
>       typeValue_ = (Class<T>)value.getClass();
>       return super.setValue(value);
>    }
> The caller may be changed to pass a Boolean but fixing UIFormCheckBoxInput to accept a String would be an essential resolution.
> Actually org.exoplatform.ecm.webui.component.explorer.popup.admin.UIPropertyForm in WCM(Site Publisher) is hitting this issue.
> Please look at JBEPP-958 for reproduce steps with Site Publisher and the patch file which can be applied to gatein trunk as well.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the gatein-issues mailing list