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

changeset 233
5240b1120530
parent 182
47a62d8d98b4
child 554
9d9f26857129
equal deleted inserted replaced
232:1fbc1cc6e260 233:5240b1120530
23 * have any questions. 23 * have any questions.
24 */ 24 */
25 25
26 package com.sun.tools.doclets.formats.html; 26 package com.sun.tools.doclets.formats.html;
27 27
28 import java.io.*;
29
30 import com.sun.javadoc.*;
28 import com.sun.tools.doclets.internal.toolkit.util.*; 31 import com.sun.tools.doclets.internal.toolkit.util.*;
29 import com.sun.javadoc.*;
30 import java.io.*;
31 32
32 /** 33 /**
33 * Class to generate Tree page for a package. The name of the file generated is 34 * Class to generate Tree page for a package. The name of the file generated is
34 * "package-tree.html" and it is generated in the respective package directory. 35 * "package-tree.html" and it is generated in the respective package directory.
35 * 36 *
143 */ 144 */
144 protected void printLinkToMainTree() { 145 protected void printLinkToMainTree() {
145 dl(); 146 dl();
146 dt(); 147 dt();
147 strongText("doclet.Package_Hierarchies"); 148 strongText("doclet.Package_Hierarchies");
149 dtEnd();
148 dd(); 150 dd();
149 navLinkMainTree(configuration.getText("doclet.All_Packages")); 151 navLinkMainTree(configuration.getText("doclet.All_Packages"));
152 ddEnd();
150 dlEnd(); 153 dlEnd();
151 hr(); 154 hr();
152 } 155 }
153 156
154 /** 157 /**

mercurial