InjectMeta annotation generates incorrect code for boolean properties
---------------------------------------------------------------------
Key: TAPESTRY-660
URL: http://issues.apache.org/jira/browse/TAPESTRY-660
Project: Tapestry
Type: Bug
Components: Annotations
Versions: 4.0
Environment: 4.0-beta-7
Reporter: Howard M. Lewis Ship
Assigned to: Howard M. Lewis Ship
Priority: Minor
@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]