Dear community,
To allow 3rd party JAXB plugins to copy annotation members between annotations via API, I would like to ask you to implement JAnnotationUse.param(String name, JAnnotationValue annotationValue) method:
public JAnnotationUse param(String name, JAnnotationValue annotationValue) {
addValue(name, annotationValue);
return this;
}
Dear community,
To allow 3rd party JAXB plugins to copy annotation members between annotations via API, I would like to ask you to implement
JAnnotationUse.param(String name, JAnnotationValue annotationValue)method: