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

Tue, 28 Dec 2010 15:54:52 -0800

author
ohair
date
Tue, 28 Dec 2010 15:54:52 -0800
changeset 798
4868a36f6fd8
parent 766
90af8d87741f
child 1358
fc123bdeddb8
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

duke@1 1 /*
ohair@798 2 * Copyright (c) 1998, 2010, 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@766 28 import java.io.*;
duke@1 29 import com.sun.javadoc.*;
bpatel@766 30 import com.sun.tools.doclets.formats.html.markup.*;
bpatel@766 31 import com.sun.tools.doclets.internal.toolkit.*;
duke@1 32
duke@1 33 /**
duke@1 34 * Generate the Serialized Form Information Page.
duke@1 35 *
duke@1 36 * @author Atul M Dambalkar
duke@1 37 */
duke@1 38 public class SerializedFormWriterImpl extends SubWriterHolderWriter
duke@1 39 implements com.sun.tools.doclets.internal.toolkit.SerializedFormWriter {
duke@1 40
duke@1 41 private static final String FILE_NAME = "serialized-form.html";
duke@1 42
duke@1 43 /**
duke@1 44 * @throws IOException
duke@1 45 * @throws DocletAbortException
duke@1 46 */
duke@1 47 public SerializedFormWriterImpl() throws IOException {
duke@1 48 super(ConfigurationImpl.getInstance(), FILE_NAME);
duke@1 49 }
duke@1 50
duke@1 51 /**
duke@1 52 * Writes the given header.
duke@1 53 *
duke@1 54 * @param header the header to write.
duke@1 55 */
duke@1 56 public void writeHeader(String header) {
duke@1 57 printHtmlHeader(header, null, true);
duke@1 58 printTop();
duke@1 59 navLinks(true);
duke@1 60 hr();
duke@1 61 center();
duke@1 62 h1();
duke@1 63 print(header);
duke@1 64 h1End();
duke@1 65 centerEnd();
duke@1 66 }
duke@1 67
duke@1 68 /**
bpatel@766 69 * Get the given header.
duke@1 70 *
bpatel@766 71 * @param header the header to write
bpatel@766 72 * @return the body content tree
duke@1 73 */
bpatel@766 74 public Content getHeader(String header) {
bpatel@766 75 Content bodyTree = getBody(true, getWindowTitle(header));
bpatel@766 76 addTop(bodyTree);
bpatel@766 77 addNavLinks(true, bodyTree);
bpatel@766 78 Content h1Content = new StringContent(header);
bpatel@766 79 Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, true,
bpatel@766 80 HtmlStyle.title, h1Content);
bpatel@766 81 Content div = HtmlTree.DIV(HtmlStyle.header, heading);
bpatel@766 82 bodyTree.addContent(div);
bpatel@766 83 return bodyTree;
duke@1 84 }
duke@1 85
duke@1 86 /**
bpatel@766 87 * Get the serialized form summaries header.
duke@1 88 *
bpatel@766 89 * @return the serialized form summary header tree
duke@1 90 */
bpatel@766 91 public Content getSerializedSummariesHeader() {
bpatel@766 92 HtmlTree ul = new HtmlTree(HtmlTag.UL);
bpatel@766 93 ul.addStyle(HtmlStyle.blockList);
bpatel@766 94 return ul;
duke@1 95 }
duke@1 96
duke@1 97 /**
bpatel@766 98 * Get the package serialized form header.
bpatel@766 99 *
bpatel@766 100 * @return the package serialized form header tree
duke@1 101 */
bpatel@766 102 public Content getPackageSerializedHeader() {
bpatel@766 103 HtmlTree li = new HtmlTree(HtmlTag.LI);
bpatel@766 104 li.addStyle(HtmlStyle.blockList);
bpatel@766 105 return li;
duke@1 106 }
duke@1 107
bpatel@766 108 /**
bpatel@766 109 * Get the given package header.
bpatel@766 110 *
bpatel@766 111 * @param packageName the package header to write
bpatel@766 112 * @return a content tree for the package header
bpatel@766 113 */
bpatel@766 114 public Content getPackageHeader(String packageName) {
bpatel@766 115 Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
bpatel@766 116 packageLabel);
bpatel@766 117 heading.addContent(getSpace());
bpatel@766 118 heading.addContent(packageName);
bpatel@766 119 return heading;
bpatel@766 120 }
duke@1 121
duke@1 122 /**
bpatel@766 123 * Get the serialized class header.
duke@1 124 *
bpatel@766 125 * @return a content tree for the serialized class header
duke@1 126 */
bpatel@766 127 public Content getClassSerializedHeader() {
bpatel@766 128 HtmlTree ul = new HtmlTree(HtmlTag.UL);
bpatel@766 129 ul.addStyle(HtmlStyle.blockList);
bpatel@766 130 return ul;
bpatel@766 131 }
bpatel@766 132
bpatel@766 133 /**
bpatel@766 134 * Get the serializable class heading.
bpatel@766 135 *
bpatel@766 136 * @param classDoc the class being processed
bpatel@766 137 * @return a content tree for the class header
bpatel@766 138 */
bpatel@766 139 public Content getClassHeader(ClassDoc classDoc) {
duke@1 140 String classLink = (classDoc.isPublic() || classDoc.isProtected())?
duke@1 141 getLink(new LinkInfoImpl(classDoc,
bpatel@766 142 configuration.getClassName(classDoc))):
duke@1 143 classDoc.qualifiedName();
bpatel@766 144 Content li = HtmlTree.LI(HtmlStyle.blockList, getMarkerAnchor(
bpatel@766 145 classDoc.qualifiedName()));
duke@1 146 String superClassLink =
duke@1 147 classDoc.superclassType() != null ?
duke@1 148 getLink(new LinkInfoImpl(LinkInfoImpl.CONTEXT_SERIALIZED_FORM,
bpatel@766 149 classDoc.superclassType())) :
duke@1 150 null;
duke@1 151
duke@1 152 //Print the heading.
duke@1 153 String className = superClassLink == null ?
duke@1 154 configuration.getText(
bpatel@766 155 "doclet.Class_0_implements_serializable", classLink) :
duke@1 156 configuration.getText(
bpatel@766 157 "doclet.Class_0_extends_implements_serializable", classLink,
bpatel@766 158 superClassLink);
bpatel@766 159 Content classNameContent = new RawHtml(className);
bpatel@766 160 li.addContent(HtmlTree.HEADING(HtmlConstants.SERIALIZED_MEMBER_HEADING,
bpatel@766 161 classNameContent));
bpatel@766 162 return li;
bpatel@766 163 }
bpatel@766 164
bpatel@766 165 /**
bpatel@766 166 * Get the serial UID info header.
bpatel@766 167 *
bpatel@766 168 * @return a content tree for the serial uid info header
bpatel@766 169 */
bpatel@766 170 public Content getSerialUIDInfoHeader() {
bpatel@766 171 HtmlTree dl = new HtmlTree(HtmlTag.DL);
bpatel@766 172 dl.addStyle(HtmlStyle.nameValue);
bpatel@766 173 return dl;
bpatel@766 174 }
bpatel@766 175
bpatel@766 176 /**
bpatel@766 177 * Adds the serial UID info.
bpatel@766 178 *
bpatel@766 179 * @param header the header that will show up before the UID.
bpatel@766 180 * @param serialUID the serial UID to print.
bpatel@766 181 * @param serialUidTree the serial UID content tree to which the serial UID
bpatel@766 182 * content will be added
bpatel@766 183 */
bpatel@766 184 public void addSerialUIDInfo(String header, String serialUID,
bpatel@766 185 Content serialUidTree) {
bpatel@766 186 Content headerContent = new StringContent(header);
bpatel@766 187 serialUidTree.addContent(HtmlTree.DT(headerContent));
bpatel@766 188 Content serialContent = new StringContent(serialUID);
bpatel@766 189 serialUidTree.addContent(HtmlTree.DD(serialContent));
bpatel@766 190 }
bpatel@766 191
bpatel@766 192 /**
bpatel@766 193 * Get the class serialize content header.
bpatel@766 194 *
bpatel@766 195 * @return a content tree for the class serialize content header
bpatel@766 196 */
bpatel@766 197 public Content getClassContentHeader() {
bpatel@766 198 HtmlTree ul = new HtmlTree(HtmlTag.UL);
bpatel@766 199 ul.addStyle(HtmlStyle.blockList);
bpatel@766 200 return ul;
bpatel@766 201 }
bpatel@766 202
bpatel@766 203 /**
bpatel@766 204 * Get the serialized content tree section.
bpatel@766 205 *
bpatel@766 206 * @param serializedTreeContent the serialized content tree to be added
bpatel@766 207 * @return a div content tree
bpatel@766 208 */
bpatel@766 209 public Content getSerializedContent(Content serializedTreeContent) {
bpatel@766 210 Content divContent = HtmlTree.DIV(HtmlStyle.serializedFormContainer,
bpatel@766 211 serializedTreeContent);
bpatel@766 212 return divContent;
bpatel@766 213 }
bpatel@766 214
bpatel@766 215 /**
bpatel@766 216 * Add the footer.
bpatel@766 217 *
bpatel@766 218 * @param serializedTree the serialized tree to be added
bpatel@766 219 */
bpatel@766 220 public void addFooter(Content serializedTree) {
bpatel@766 221 addNavLinks(false, serializedTree);
bpatel@766 222 addBottom(serializedTree);
bpatel@766 223 }
bpatel@766 224
bpatel@766 225 /**
bpatel@766 226 * {@inheritDoc}
bpatel@766 227 */
bpatel@766 228 public void printDocument(Content serializedTree) {
bpatel@766 229 printHtmlDocument(null, true, serializedTree);
duke@1 230 }
duke@1 231
duke@1 232 private void tableHeader() {
duke@1 233 tableIndexSummary();
duke@1 234 trBgcolorStyle("#CCCCFF", "TableSubHeadingColor");
duke@1 235 }
duke@1 236
duke@1 237 private void tableFooter() {
duke@1 238 fontEnd();
duke@1 239 thEnd(); trEnd(); tableEnd();
duke@1 240 }
duke@1 241
duke@1 242 /**
duke@1 243 * Return an instance of a SerialFieldWriter.
duke@1 244 *
duke@1 245 * @return an instance of a SerialFieldWriter.
duke@1 246 */
duke@1 247 public SerialFieldWriter getSerialFieldWriter(ClassDoc classDoc) {
duke@1 248 return new HtmlSerialFieldWriter(this, classDoc);
duke@1 249 }
duke@1 250
duke@1 251 /**
duke@1 252 * Return an instance of a SerialMethodWriter.
duke@1 253 *
duke@1 254 * @return an instance of a SerialMethodWriter.
duke@1 255 */
duke@1 256 public SerialMethodWriter getSerialMethodWriter(ClassDoc classDoc) {
duke@1 257 return new HtmlSerialMethodWriter(this, classDoc);
duke@1 258 }
duke@1 259 }

mercurial