[ http://issues.apache.org/jira/browse/TAPESTRY-660?page=all ]
     
Howard M. Lewis Ship closed TAPESTRY-660:
-----------------------------------------

    Fix Version: 4.0
     Resolution: Fixed

> Injecting meta data generates incorrect code for boolean properties
> -------------------------------------------------------------------
>
>          Key: TAPESTRY-660
>          URL: http://issues.apache.org/jira/browse/TAPESTRY-660
>      Project: Tapestry
>         Type: Bug
>   Components: Framework
>     Versions: 4.0
>  Environment: 4.0-beta-7
>     Reporter: Howard M. Lewis Ship
>     Assignee: Howard M. Lewis Ship
>     Priority: Minor
>      Fix For: 4.0

>
>   @InjectMeta("non-user-accessible")
>   public abstract boolean getNonUserAccessible();
> Is converted into:
> public boolean getNonUserAccessible()
> {
>   java.lang.String meta = 
> _$componentPropertySource.getComponentProperty(this, "non-user-accessible");
>   return java.lang.Boolean.valueOf(meta);
> }
> Boolean.valueOf() returns a java.lang.Boolean, not a boolean.
> We should be using parseBoolean() for boolean (primitive) types.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to