Non-null return types allowed for @actionListener
-------------------------------------------------

         Key: MYFACES-1127
         URL: http://issues.apache.org/jira/browse/MYFACES-1127
     Project: MyFaces
        Type: Bug
  Components: Implementation  
    Versions: 1.1.1    
 Environment: servlet 2.4 , tomcat 5.5.9, JSP 2.0
    Reporter: Dennis Byrne


See section 3.2.1.1 in JSF 1.1 for background.

This will works, but shouldn't :

<h:commandButton
        immediate="true"
        binding="#{backer.clear}"
        actionListener="#{backer.clear}" 
        value="Clear" />

public Double clear(ActionEvent event){
        log.info("clear ");
        return null;
}

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

Reply via email to