-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
Description
Hello.
When I annotate eg a field with an annotation.
If this annotation accept one parameter which has name "value".
I can use this annotation with @annotation(myvalue)
In JCM I need to specify a name in the annotation. However, if I specify "value" it generates the correct expected result.
Could we have another function /** add a value to the default parameter of the annotation*/JAnnotationUse#param(String value){return param("value", value);}
I guess the issue is, that there are already many different methods for param(), eg with String, double, etc.