You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: