src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java

changeset 1744
76a691e3e961
parent 1738
6ea964c78845
child 1751
ca8808c88f94
equal deleted inserted replaced
1743:6a5288a298fd 1744:76a691e3e961
395 */ 395 */
396 public void addTypeParamInfo(Content classInfoTree) { 396 public void addTypeParamInfo(Content classInfoTree) {
397 if (classDoc.typeParamTags().length > 0) { 397 if (classDoc.typeParamTags().length > 0) {
398 TagletOutput output = (new ParamTaglet()).getTagletOutput(classDoc, 398 TagletOutput output = (new ParamTaglet()).getTagletOutput(classDoc,
399 getTagletWriterInstance(false)); 399 getTagletWriterInstance(false));
400 Content typeParam = new RawHtml(output.toString()); 400 Content typeParam = ((TagletOutputImpl) output).getContent();
401 Content dl = HtmlTree.DL(typeParam); 401 Content dl = HtmlTree.DL(typeParam);
402 classInfoTree.addContent(dl); 402 classInfoTree.addContent(dl);
403 } 403 }
404 } 404 }
405 405

mercurial