[
https://issues.jboss.org/browse/ROASTER-5?page=com.atlassian.jira.plugin....
]
Lincoln Baxter III commented on ROASTER-5:
------------------------------------------
No, but there should be a getOrigin() or getParent() method added to these APIs so that we
can support:
{code}
method.addParameter().getParent().addParameter()
{code}
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
Assignee: George Gastaldi
Fix For: 2.2.0.Final
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