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

changeset 1750
081d7c72ee92
parent 1744
76a691e3e961
child 1751
ca8808c88f94
equal deleted inserted replaced
1749:25c89a492f14 1750:081d7c72ee92
186 * @param contentTree the tree to which the member tags info will be added 186 * @param contentTree the tree to which the member tags info will be added
187 */ 187 */
188 public void addMemberTags(FieldDoc field, Content contentTree) { 188 public void addMemberTags(FieldDoc field, Content contentTree) {
189 TagletOutputImpl output = new TagletOutputImpl(); 189 TagletOutputImpl output = new TagletOutputImpl();
190 TagletWriter.genTagOuput(configuration.tagletManager, field, 190 TagletWriter.genTagOuput(configuration.tagletManager, field,
191 configuration.tagletManager.getCustomTags(field), 191 configuration.tagletManager.getCustomTaglets(field),
192 writer.getTagletWriterInstance(false), output); 192 writer.getTagletWriterInstance(false), output);
193 Content tagContent = output.getContent(); 193 Content tagContent = output.getContent();
194 Content dlTags = new HtmlTree(HtmlTag.DL); 194 Content dlTags = new HtmlTree(HtmlTag.DL);
195 dlTags.addContent(tagContent); 195 dlTags.addContent(tagContent);
196 contentTree.addContent(dlTags); // TODO: what if empty? 196 contentTree.addContent(dlTags); // TODO: what if empty?

mercurial