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

changeset 182
47a62d8d98b4
parent 117
24a47c3062fe
child 184
905e151a185a
equal deleted inserted replaced
178:4efd44aa85ff 182:47a62d8d98b4
100 */ 100 */
101 protected void printIndexRow(PackageDoc pkg) { 101 protected void printIndexRow(PackageDoc pkg) {
102 if(pkg != null && pkg.name().length() > 0) { 102 if(pkg != null && pkg.name().length() > 0) {
103 trBgcolorStyle("white", "TableRowColor"); 103 trBgcolorStyle("white", "TableRowColor");
104 summaryRow(20); 104 summaryRow(20);
105 bold(); 105 strong();
106 printPackageLink(pkg, Util.getPackageName(pkg), false); 106 printPackageLink(pkg, Util.getPackageName(pkg), false);
107 boldEnd(); 107 strongEnd();
108 summaryRowEnd(); 108 summaryRowEnd();
109 summaryRow(0); 109 summaryRow(0);
110 printSummaryComment(pkg); 110 printSummaryComment(pkg);
111 summaryRowEnd(); 111 summaryRowEnd();
112 trEnd(); 112 trEnd();
135 */ 135 */
136 protected void printOverviewHeader() { 136 protected void printOverviewHeader() {
137 if (root.inlineTags().length > 0) { 137 if (root.inlineTags().length > 0) {
138 printSummaryComment(root); 138 printSummaryComment(root);
139 p(); 139 p();
140 bold(configuration.getText("doclet.See")); 140 strong(configuration.getText("doclet.See"));
141 br(); 141 br();
142 printNbsps(); 142 printNbsps();
143 printHyperLink("", "overview_description", 143 printHyperLink("", "overview_description",
144 configuration.getText("doclet.Description"), true); 144 configuration.getText("doclet.Description"), true);
145 p(); 145 p();
150 * Print Html tags for the table for this package index. 150 * Print Html tags for the table for this package index.
151 */ 151 */
152 protected void printIndexHeader(String text) { 152 protected void printIndexHeader(String text) {
153 tableIndexSummary(); 153 tableIndexSummary();
154 tableHeaderStart("#CCCCFF"); 154 tableHeaderStart("#CCCCFF");
155 bold(text); 155 strong(text);
156 tableHeaderEnd(); 156 tableHeaderEnd();
157 } 157 }
158 158
159 /** 159 /**
160 * Print Html closing tags for the table for this package index. 160 * Print Html closing tags for the table for this package index.

mercurial