[richfaces-issues] [JBoss JIRA] (RF-12249) CDK: generates both get* and is* methods for boolean/Boolean expressions

Lukáš Fryč (JIRA) jira-events at lists.jboss.org
Mon May 14 12:42:18 EDT 2012


Lukáš Fryč created RF-12249:
-------------------------------

             Summary: CDK: generates both get* and is* methods for boolean/Boolean expressions
                 Key: RF-12249
                 URL: https://issues.jboss.org/browse/RF-12249
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: cdk
    Affects Versions: 4.2.0.Final
            Reporter: Paul Dijou


Generate both "get..." and "is..." method for Boolean and boolean attributes

If you have an attribute like :

{code:java}
@Attribute
abstract public boolean isClosable();
{code}

This will generate a "isClosable()" method of course. But, then, trying to access it in a template like :

{code:xml}
<c:if test="#{alert.closable}">
{code}

Will crash since JSF try to call the "getClosable()" method. The workaround is to write :

{code:xml}
<c:if test="#{alert.isClosable()}">
{code}

But it would be nicer if the "geClosable()" method was generated in the same time of the "isClosable()" method.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       



More information about the richfaces-issues mailing list