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

Tue, 09 Oct 2012 19:10:00 -0700

author
jjg
date
Tue, 09 Oct 2012 19:10:00 -0700
changeset 1357
c75be5bc5283
parent 995
62bc3775d5bb
child 1358
fc123bdeddb8
permissions
-rw-r--r--

8000663: clean up langtools imports
Reviewed-by: darcy

duke@1 1 /*
jjg@1357 2 * Copyright (c) 1997, 2012, 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
duke@1 28 import java.io.*;
duke@1 29 import java.util.*;
jjg@1357 30
bpatel@766 31 import com.sun.javadoc.*;
jjg@1357 32 import com.sun.tools.doclets.formats.html.markup.*;
bpatel@766 33 import com.sun.tools.doclets.internal.toolkit.*;
bpatel@766 34 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 35
duke@1 36 /**
duke@1 37 * Generate the package index page "overview-summary.html" for the right-hand
duke@1 38 * frame. A click on the package name on this page will update the same frame
duke@1 39 * with the "pacakge-summary.html" file for the clicked package.
duke@1 40 *
duke@1 41 * @author Atul M Dambalkar
bpatel@243 42 * @author Bhavesh Patel (Modified)
duke@1 43 */
duke@1 44 public class PackageIndexWriter extends AbstractPackageIndexWriter {
duke@1 45
duke@1 46 /**
duke@1 47 * Root of the program structure. Used for "overview" documentation.
duke@1 48 */
duke@1 49 private RootDoc root;
duke@1 50
duke@1 51 /**
duke@1 52 * Map representing the group of packages as specified on the command line.
duke@1 53 *
duke@1 54 * @see Group
duke@1 55 */
jjg@74 56 private Map<String,List<PackageDoc>> groupPackageMap;
duke@1 57
duke@1 58 /**
duke@1 59 * List to store the order groups as specified on the command line.
duke@1 60 */
mcimadamore@184 61 private List<String> groupList;
duke@1 62
duke@1 63 /**
duke@1 64 * Construct the PackageIndexWriter. Also constructs the grouping
duke@1 65 * information as provided on the command line by "-group" option. Stores
duke@1 66 * the order of groups specified by the user.
duke@1 67 *
duke@1 68 * @see Group
duke@1 69 */
duke@1 70 public PackageIndexWriter(ConfigurationImpl configuration,
duke@1 71 String filename)
duke@1 72 throws IOException {
duke@1 73 super(configuration, filename);
duke@1 74 this.root = configuration.root;
duke@1 75 groupPackageMap = configuration.group.groupPackages(packages);
duke@1 76 groupList = configuration.group.getGroupList();
duke@1 77 }
duke@1 78
duke@1 79 /**
duke@1 80 * Generate the package index page for the right-hand frame.
duke@1 81 *
duke@1 82 * @param configuration the current configuration of the doclet.
duke@1 83 */
duke@1 84 public static void generate(ConfigurationImpl configuration) {
duke@1 85 PackageIndexWriter packgen;
duke@1 86 String filename = "overview-summary.html";
duke@1 87 try {
duke@1 88 packgen = new PackageIndexWriter(configuration, filename);
bpatel@766 89 packgen.buildPackageIndexFile("doclet.Window_Overview_Summary", true);
duke@1 90 packgen.close();
duke@1 91 } catch (IOException exc) {
duke@1 92 configuration.standardmessage.error(
duke@1 93 "doclet.exception_encountered",
duke@1 94 exc.toString(), filename);
duke@1 95 throw new DocletAbortException();
duke@1 96 }
duke@1 97 }
duke@1 98
duke@1 99 /**
bpatel@766 100 * Depending upon the grouping information and their titles, add
bpatel@766 101 * separate table indices for each package group.
duke@1 102 *
bpatel@766 103 * @param body the documentation tree to which the index will be added
duke@1 104 */
bpatel@766 105 protected void addIndex(Content body) {
duke@1 106 for (int i = 0; i < groupList.size(); i++) {
jjg@198 107 String groupname = groupList.get(i);
jjg@74 108 List<PackageDoc> list = groupPackageMap.get(groupname);
duke@1 109 if (list != null && list.size() > 0) {
bpatel@766 110 addIndexContents(list.toArray(new PackageDoc[list.size()]),
bpatel@766 111 groupname, configuration.getText("doclet.Member_Table_Summary",
bpatel@766 112 groupname, configuration.getText("doclet.packages")), body);
duke@1 113 }
duke@1 114 }
duke@1 115 }
duke@1 116
duke@1 117 /**
bpatel@766 118 * {@inheritDoc}
duke@1 119 */
bpatel@766 120 protected void addPackagesList(PackageDoc[] packages, String text,
bpatel@766 121 String tableSummary, Content body) {
bpatel@766 122 Content table = HtmlTree.TABLE(HtmlStyle.overviewSummary, 0, 3, 0, tableSummary,
bpatel@766 123 getTableCaption(text));
bpatel@766 124 table.addContent(getSummaryTableHeader(packageTableHeader, "col"));
bpatel@766 125 Content tbody = new HtmlTree(HtmlTag.TBODY);
bpatel@766 126 addPackagesList(packages, tbody);
bpatel@766 127 table.addContent(tbody);
bpatel@766 128 Content div = HtmlTree.DIV(HtmlStyle.contentContainer, table);
bpatel@766 129 body.addContent(div);
bpatel@766 130 }
bpatel@766 131
bpatel@766 132 /**
bpatel@766 133 * Adds list of packages in the index table. Generate link to each package.
bpatel@766 134 *
bpatel@766 135 * @param packages Packages to which link is to be generated
bpatel@766 136 * @param tbody the documentation tree to which the list will be added
bpatel@766 137 */
bpatel@766 138 protected void addPackagesList(PackageDoc[] packages, Content tbody) {
bpatel@766 139 for (int i = 0; i < packages.length; i++) {
bpatel@766 140 if (packages[i] != null && packages[i].name().length() > 0) {
bpatel@995 141 if (configuration.nodeprecated && Util.isDeprecated(packages[i]))
bpatel@995 142 continue;
bpatel@766 143 Content packageLinkContent = getPackageLink(packages[i],
bpatel@766 144 getPackageName(packages[i]));
bpatel@766 145 Content tdPackage = HtmlTree.TD(HtmlStyle.colFirst, packageLinkContent);
bpatel@766 146 HtmlTree tdSummary = new HtmlTree(HtmlTag.TD);
bpatel@766 147 tdSummary.addStyle(HtmlStyle.colLast);
bpatel@766 148 addSummaryComment(packages[i], tdSummary);
bpatel@766 149 HtmlTree tr = HtmlTree.TR(tdPackage);
bpatel@766 150 tr.addContent(tdSummary);
bpatel@766 151 if (i%2 == 0)
bpatel@766 152 tr.addStyle(HtmlStyle.altColor);
bpatel@766 153 else
bpatel@766 154 tr.addStyle(HtmlStyle.rowColor);
bpatel@766 155 tbody.addContent(tr);
bpatel@766 156 }
duke@1 157 }
duke@1 158 }
duke@1 159
duke@1 160 /**
bpatel@766 161 * Adds the overview summary comment for this documentation. Add one line
bpatel@766 162 * summary at the top of the page and generate a link to the description,
bpatel@766 163 * which is added at the end of this page.
bpatel@766 164 *
bpatel@766 165 * @param body the documentation tree to which the overview header will be added
duke@1 166 */
bpatel@766 167 protected void addOverviewHeader(Content body) {
duke@1 168 if (root.inlineTags().length > 0) {
bpatel@943 169 HtmlTree subTitleDiv = new HtmlTree(HtmlTag.DIV);
bpatel@943 170 subTitleDiv.addStyle(HtmlStyle.subTitle);
bpatel@943 171 addSummaryComment(root, subTitleDiv);
bpatel@943 172 Content div = HtmlTree.DIV(HtmlStyle.header, subTitleDiv);
bpatel@766 173 Content see = seeLabel;
bpatel@766 174 see.addContent(" ");
bpatel@766 175 Content descPara = HtmlTree.P(see);
bpatel@766 176 Content descLink = getHyperLink("", "overview_description",
bpatel@766 177 descriptionLabel, "", "");
bpatel@766 178 descPara.addContent(descLink);
bpatel@766 179 div.addContent(descPara);
bpatel@766 180 body.addContent(div);
duke@1 181 }
duke@1 182 }
duke@1 183
duke@1 184 /**
bpatel@766 185 * Adds the overview comment as provided in the file specified by the
bpatel@766 186 * "-overview" option on the command line.
bpatel@766 187 *
bpatel@766 188 * @param htmltree the documentation tree to which the overview comment will
bpatel@766 189 * be added
duke@1 190 */
bpatel@766 191 protected void addOverviewComment(Content htmltree) {
bpatel@766 192 if (root.inlineTags().length > 0) {
bpatel@766 193 htmltree.addContent(getMarkerAnchor("overview_description"));
bpatel@943 194 HtmlTree div = new HtmlTree(HtmlTag.DIV);
bpatel@943 195 div.addStyle(HtmlStyle.subTitle);
bpatel@943 196 addInlineComment(root, div);
bpatel@943 197 htmltree.addContent(div);
bpatel@766 198 }
duke@1 199 }
duke@1 200
duke@1 201 /**
bpatel@766 202 * Adds the tag information as provided in the file specified by the
bpatel@766 203 * "-overview" option on the command line.
bpatel@766 204 *
bpatel@766 205 * @param body the documentation tree to which the overview will be added
duke@1 206 */
bpatel@766 207 protected void addOverview(Content body) throws IOException {
bpatel@766 208 HtmlTree div = new HtmlTree(HtmlTag.DIV);
bpatel@766 209 div.addStyle(HtmlStyle.footer);
bpatel@766 210 addOverviewComment(div);
bpatel@766 211 addTagsInfo(root, div);
bpatel@766 212 body.addContent(div);
duke@1 213 }
duke@1 214
duke@1 215 /**
bpatel@766 216 * Adds the top text (from the -top option), the upper
bpatel@766 217 * navigation bar, and then the title (from the"-title"
bpatel@766 218 * option), at the top of page.
bpatel@766 219 *
bpatel@766 220 * @body the documentation tree to which the navigation bar header will be added
bpatel@766 221 */
bpatel@766 222 protected void addNavigationBarHeader(Content body) {
bpatel@766 223 addTop(body);
bpatel@766 224 addNavLinks(true, body);
bpatel@766 225 addConfigurationTitle(body);
bpatel@766 226 }
bpatel@766 227
bpatel@766 228 /**
bpatel@766 229 * Adds the lower navigation bar and the bottom text
duke@1 230 * (from the -bottom option) at the bottom of page.
bpatel@766 231 *
bpatel@766 232 * @param the documentation tree to which the navigation bar footer will be added
duke@1 233 */
bpatel@766 234 protected void addNavigationBarFooter(Content body) {
bpatel@766 235 addNavLinks(false, body);
bpatel@766 236 addBottom(body);
duke@1 237 }
duke@1 238 }

mercurial