Closed slovdahl closed 9 years ago
The com.sun.tools.javadoc.ParamTagImpl returns the parameter name without the < and > signs, therefore they need to be re-added.
ParamTagImpl constructor confirming the behaviour:
ParamTagImpl(DocImpl holder, String name, String text) { super(holder, name, text); String[] sa = this.divideAtWhite(); Matcher m = typeParamRE.matcher(sa[0]); this.isTypeParameter = m.matches(); this.parameterName = this.isTypeParameter?m.group(1):sa[0]; this.parameterComment = sa[1]; }
The com.sun.tools.javadoc.ParamTagImpl returns the parameter name without the < and > signs, therefore they need to be re-added.
ParamTagImpl constructor confirming the behaviour: