[forge-issues] [JBoss JIRA] (ROASTER-5) Having method parameters a bit more typed

Antonio Goncalves (JIRA) issues at jboss.org
Thu Apr 3 13:51:13 EDT 2014


Antonio Goncalves created ROASTER-5:
---------------------------------------

             Summary: Having method parameters a bit more typed
                 Key: ROASTER-5
                 URL: https://issues.jboss.org/browse/ROASTER-5
             Project: Roaster
          Issue Type: Feature Request
          Components: API
    Affects Versions: 2.1.0.Final
            Reporter: Antonio Goncalves
             Fix For: 2.x Future


I want to create a Bean Validation implementation, that means that the {{isValid}} method takes two parameters. And the only way to add two parameters seems to be by a String

{code}
javaClass.addMethod().setPublic().setName("isValid").setReturnType("boolean").setParameters("Number value, ConstraintValidatorContext context").setBody("return false;").addAnnotation(Override.class);
{code}

It would be nice to have typed parameters so the import is implicit, and things are a bit more typed :

{code}
javaClass.addMethod().setPublic().setName("isValid").setReturnType("boolean").addParameter(Number.class, "value").addParameter(ConstraintValidatorContext.class, "context").setBody("return false;").addAnnotation(Override.class);
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the forge-issues mailing list