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

Thu, 10 Oct 2013 10:51:15 -0700

author
bpatel
date
Thu, 10 Oct 2013 10:51:15 -0700
changeset 2101
933ba3f81a87
parent 1751
ca8808c88f94
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8025633: Fix javadoc to generate valid anchor names
Reviewed-by: jjg

duke@1 1 /*
jjg@1735 2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.doclets.formats.html;
duke@1 27
bpatel@233 28 import java.util.*;
bpatel@233 29
bpatel@233 30 import com.sun.javadoc.*;
jjg@1357 31 import com.sun.tools.doclets.formats.html.markup.*;
duke@1 32 import com.sun.tools.doclets.internal.toolkit.*;
duke@1 33 import com.sun.tools.doclets.internal.toolkit.taglets.*;
duke@1 34
duke@1 35 /**
duke@1 36 * Generate serialized form for serializable fields.
duke@1 37 * Documentation denoted by the tags <code>serial</code> and
duke@1 38 * <code>serialField</code> is processed.
duke@1 39 *
jjg@1359 40 * <p><b>This is NOT part of any supported API.
jjg@1359 41 * If you write code that depends on this, you do so at your own risk.
jjg@1359 42 * This code and its internal interfaces are subject to change or
jjg@1359 43 * deletion without notice.</b>
jjg@1359 44 *
duke@1 45 * @author Joe Fialli
bpatel@233 46 * @author Bhavesh Patel (Modified)
duke@1 47 */
duke@1 48 public class HtmlSerialFieldWriter extends FieldWriterImpl
jjg@1743 49 implements SerializedFormWriter.SerialFieldWriter {
duke@1 50 ProgramElementDoc[] members = null;
duke@1 51
duke@1 52 public HtmlSerialFieldWriter(SubWriterHolderWriter writer,
duke@1 53 ClassDoc classdoc) {
duke@1 54 super(writer, classdoc);
duke@1 55 }
duke@1 56
mcimadamore@184 57 public List<FieldDoc> members(ClassDoc cd) {
jjg@910 58 return Arrays.asList(cd.serializableFields());
duke@1 59 }
duke@1 60
bpatel@766 61 /**
bpatel@766 62 * Return the header for serializable fields section.
bpatel@766 63 *
bpatel@766 64 * @return a content tree for the header
bpatel@766 65 */
bpatel@766 66 public Content getSerializableFieldsHeader() {
bpatel@766 67 HtmlTree ul = new HtmlTree(HtmlTag.UL);
bpatel@766 68 ul.addStyle(HtmlStyle.blockList);
bpatel@766 69 return ul;
duke@1 70 }
duke@1 71
duke@1 72 /**
bpatel@766 73 * Return the header for serializable fields content section.
duke@1 74 *
bpatel@766 75 * @param isLastContent true if the cotent being documented is the last content.
bpatel@766 76 * @return a content tree for the header
duke@1 77 */
bpatel@766 78 public Content getFieldsContentHeader(boolean isLastContent) {
bpatel@766 79 HtmlTree li = new HtmlTree(HtmlTag.LI);
bpatel@766 80 if (isLastContent)
bpatel@766 81 li.addStyle(HtmlStyle.blockListLast);
bpatel@766 82 else
bpatel@766 83 li.addStyle(HtmlStyle.blockList);
bpatel@766 84 return li;
duke@1 85 }
duke@1 86
duke@1 87 /**
bpatel@766 88 * Add serializable fields.
bpatel@766 89 *
bpatel@766 90 * @param heading the heading for the section
bpatel@766 91 * @param serializableFieldsTree the tree to be added to the serializable fileds
bpatel@766 92 * content tree
bpatel@766 93 * @return a content tree for the serializable fields content
bpatel@766 94 */
bpatel@766 95 public Content getSerializableFields(String heading, Content serializableFieldsTree) {
bpatel@766 96 HtmlTree li = new HtmlTree(HtmlTag.LI);
bpatel@766 97 li.addStyle(HtmlStyle.blockList);
bpatel@766 98 if (serializableFieldsTree.isValid()) {
bpatel@766 99 Content headingContent = new StringContent(heading);
bpatel@766 100 Content serialHeading = HtmlTree.HEADING(HtmlConstants.SERIALIZED_MEMBER_HEADING,
bpatel@766 101 headingContent);
bpatel@766 102 li.addContent(serialHeading);
bpatel@766 103 li.addContent(serializableFieldsTree);
bpatel@766 104 }
bpatel@766 105 return li;
bpatel@766 106 }
bpatel@766 107
bpatel@766 108 /**
bpatel@766 109 * Add the member header.
bpatel@766 110 *
jjg@1358 111 * @param fieldType the class document to be listed
jjg@1358 112 * @param fieldTypeStr the string for the field type to be documented
bpatel@766 113 * @param fieldDimensions the dimensions of the field string to be added
jjg@1358 114 * @param fieldName name of the field to be added
bpatel@766 115 * @param contentTree the content tree to which the member header will be added
bpatel@766 116 */
bpatel@766 117 public void addMemberHeader(ClassDoc fieldType, String fieldTypeStr,
bpatel@766 118 String fieldDimensions, String fieldName, Content contentTree) {
bpatel@766 119 Content nameContent = new RawHtml(fieldName);
bpatel@766 120 Content heading = HtmlTree.HEADING(HtmlConstants.MEMBER_HEADING, nameContent);
bpatel@766 121 contentTree.addContent(heading);
bpatel@766 122 Content pre = new HtmlTree(HtmlTag.PRE);
bpatel@766 123 if (fieldType == null) {
bpatel@766 124 pre.addContent(fieldTypeStr);
bpatel@766 125 } else {
jjg@1736 126 Content fieldContent = writer.getLink(new LinkInfoImpl(
jjg@1736 127 configuration, LinkInfoImpl.Kind.SERIAL_MEMBER, fieldType));
bpatel@766 128 pre.addContent(fieldContent);
bpatel@766 129 }
bpatel@766 130 pre.addContent(fieldDimensions + " ");
bpatel@766 131 pre.addContent(fieldName);
bpatel@766 132 contentTree.addContent(pre);
bpatel@766 133 }
bpatel@766 134
bpatel@766 135 /**
bpatel@766 136 * Add the deprecated information for this member.
duke@1 137 *
duke@1 138 * @param field the field to document.
bpatel@766 139 * @param contentTree the tree to which the deprecated info will be added
duke@1 140 */
bpatel@766 141 public void addMemberDeprecatedInfo(FieldDoc field, Content contentTree) {
bpatel@766 142 addDeprecatedInfo(field, contentTree);
bpatel@766 143 }
bpatel@766 144
bpatel@766 145 /**
bpatel@766 146 * Add the description text for this member.
bpatel@766 147 *
bpatel@766 148 * @param field the field to document.
bpatel@766 149 * @param contentTree the tree to which the deprecated info will be added
bpatel@766 150 */
bpatel@766 151 public void addMemberDescription(FieldDoc field, Content contentTree) {
duke@1 152 if (field.inlineTags().length > 0) {
bpatel@766 153 writer.addInlineComment(field, contentTree);
duke@1 154 }
duke@1 155 Tag[] tags = field.tags("serial");
duke@1 156 if (tags.length > 0) {
bpatel@766 157 writer.addInlineComment(field, tags[0], contentTree);
duke@1 158 }
duke@1 159 }
duke@1 160
duke@1 161 /**
bpatel@766 162 * Add the description text for this member represented by the tag.
duke@1 163 *
bpatel@766 164 * @param serialFieldTag the field to document (represented by tag)
bpatel@766 165 * @param contentTree the tree to which the deprecated info will be added
duke@1 166 */
bpatel@766 167 public void addMemberDescription(SerialFieldTag serialFieldTag, Content contentTree) {
bpatel@233 168 String serialFieldTagDesc = serialFieldTag.description().trim();
bpatel@233 169 if (!serialFieldTagDesc.isEmpty()) {
bpatel@766 170 Content serialFieldContent = new RawHtml(serialFieldTagDesc);
bpatel@766 171 Content div = HtmlTree.DIV(HtmlStyle.block, serialFieldContent);
bpatel@766 172 contentTree.addContent(div);
bpatel@233 173 }
duke@1 174 }
duke@1 175
duke@1 176 /**
bpatel@766 177 * Add the tag information for this member.
duke@1 178 *
duke@1 179 * @param field the field to document.
bpatel@766 180 * @param contentTree the tree to which the member tags info will be added
duke@1 181 */
bpatel@766 182 public void addMemberTags(FieldDoc field, Content contentTree) {
jjg@1751 183 Content tagContent = new ContentBuilder();
jjg@1410 184 TagletWriter.genTagOuput(configuration.tagletManager, field,
jjg@1750 185 configuration.tagletManager.getCustomTaglets(field),
jjg@1751 186 writer.getTagletWriterInstance(false), tagContent);
bpatel@766 187 Content dlTags = new HtmlTree(HtmlTag.DL);
jjg@1744 188 dlTags.addContent(tagContent);
jjg@1744 189 contentTree.addContent(dlTags); // TODO: what if empty?
duke@1 190 }
bpatel@222 191
bpatel@222 192 /**
bpatel@233 193 * Check to see if overview details should be printed. If
bpatel@222 194 * nocomment option set or if there is no text to be printed
bpatel@233 195 * for deprecation info, comment or tags, do not print overview details.
bpatel@233 196 *
bpatel@233 197 * @param field the field to check overview details for.
bpatel@233 198 * @return true if overview details need to be printed
bpatel@222 199 */
bpatel@233 200 public boolean shouldPrintOverview(FieldDoc field) {
jjg@1410 201 if (!configuration.nocomment) {
bpatel@233 202 if(!field.commentText().isEmpty() ||
bpatel@233 203 writer.hasSerializationOverviewTags(field))
bpatel@222 204 return true;
bpatel@233 205 }
bpatel@233 206 if (field.tags("deprecated").length > 0)
bpatel@222 207 return true;
bpatel@222 208 return false;
bpatel@222 209 }
duke@1 210 }

mercurial