author | jjg |
Wed, 07 Feb 2018 11:28:23 -0800 | |
changeset 48759 | ffa68af7da87 |
parent 48295 | c79d31ba84b9 |
child 49569 | d4d2f634b72f |
permissions | -rw-r--r-- |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
1 |
/* |
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
2 |
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
4 |
* |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
10 |
* |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
15 |
* accompanied this code). |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
16 |
* |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
20 |
* |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
23 |
* questions. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
24 |
*/ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
25 |
|
35426
374342e56a56
8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents:
33920
diff
changeset
|
26 |
package jdk.javadoc.internal.doclets.toolkit.util; |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
27 |
|
36526 | 28 |
import javax.lang.model.element.ModuleElement; |
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
29 |
import javax.lang.model.element.PackageElement; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
30 |
import javax.lang.model.element.TypeElement; |
36526 | 31 |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
32 |
/** |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
33 |
* Standard DocPath objects. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
34 |
* |
14368
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
14357
diff
changeset
|
35 |
* <p><b>This is NOT part of any supported API. |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
14357
diff
changeset
|
36 |
* If you write code that depends on this, you do so at your own risk. |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
14357
diff
changeset
|
37 |
* This code and its internal interfaces are subject to change or |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
14357
diff
changeset
|
38 |
* deletion without notice.</b> |
6f4c62de6985
8001664: refactor javadoc to use abstraction to handle files
jjg
parents:
14357
diff
changeset
|
39 |
* |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
40 |
*/ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
41 |
public class DocPaths { |
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
42 |
private final boolean useModuleDirectories; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
43 |
private final String moduleSeparator; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
44 |
private final Utils utils; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
45 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
46 |
public DocPaths(Utils utils, boolean useModuleDirectories) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
47 |
this.utils = utils; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
48 |
this.useModuleDirectories = useModuleDirectories; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
49 |
moduleSeparator = useModuleDirectories ? "/module-" : "-"; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
50 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
51 |
|
40500
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
52 |
/** The name of the file for all classes, without using frames, when --no-frames is specified. */ |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
53 |
public static final DocPath ALLCLASSES = DocPath.create("allclasses.html"); |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
54 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
55 |
/** The name of the file for all classes, using frames. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
56 |
public static final DocPath ALLCLASSES_FRAME = DocPath.create("allclasses-frame.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
57 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
58 |
/** The name of the file for all classes, without using frames. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
59 |
public static final DocPath ALLCLASSES_NOFRAME = DocPath.create("allclasses-noframe.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
60 |
|
40500
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
61 |
public static DocPath AllClasses(boolean frames) { |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
62 |
return frames ? ALLCLASSES_NOFRAME : ALLCLASSES; |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
63 |
} |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
64 |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
65 |
/** The name of the sub-directory for storing class usage info. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
66 |
public static final DocPath CLASS_USE = DocPath.create("class-use"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
67 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
68 |
/** The name of the file for constant values. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
69 |
public static final DocPath CONSTANT_VALUES = DocPath.create("constant-values.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
70 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
71 |
/** The name of the fie for deprecated elements. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
72 |
public static final DocPath DEPRECATED_LIST = DocPath.create("deprecated-list.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
73 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
74 |
/** The name of the subdirectory for user-provided additional documentation files. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
75 |
public static final DocPath DOC_FILES = DocPath.create("doc-files"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
76 |
|
48295
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
77 |
/** The name of the file for the element list. */ |
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
78 |
public static final DocPath ELEMENT_LIST = DocPath.create("element-list"); |
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
79 |
|
33920 | 80 |
/** The name of the image file showing a magnifying glass on the search box. */ |
81 |
public static final DocPath GLASS_IMG = DocPath.create("glass.png"); |
|
82 |
||
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
83 |
/** The name of the file for help info. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
84 |
public static final DocPath HELP_DOC = DocPath.create("help-doc.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
85 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
86 |
/** The name of the main index file. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
87 |
public static final DocPath INDEX = DocPath.create("index.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
88 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
89 |
/** The name of the single index file for all classes. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
90 |
public static final DocPath INDEX_ALL = DocPath.create("index-all.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
91 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
92 |
/** The name of the directory for the split index files. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
93 |
public static final DocPath INDEX_FILES = DocPath.create("index-files"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
94 |
|
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
95 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
96 |
* Generate the name of one of the files in the split index. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
97 |
* @param n the position in the index |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
98 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
99 |
*/ |
22163 | 100 |
public static DocPath indexN(int n) { |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
101 |
return DocPath.create("index-" + n + ".html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
102 |
} |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
103 |
|
14549
0599d73bf1da
8002304: Group methods by types in methods summary section
bpatel
parents:
14368
diff
changeset
|
104 |
/** The name of the default javascript file. */ |
0599d73bf1da
8002304: Group methods by types in methods summary section
bpatel
parents:
14368
diff
changeset
|
105 |
public static final DocPath JAVASCRIPT = DocPath.create("script.js"); |
0599d73bf1da
8002304: Group methods by types in methods summary section
bpatel
parents:
14368
diff
changeset
|
106 |
|
33920 | 107 |
/** The name of the directory for the jQuery. */ |
108 |
public static final DocPath JQUERY_FILES = DocPath.create("jquery"); |
|
109 |
||
110 |
/** The name of the default jQuery stylesheet file. */ |
|
111 |
public static final DocPath JQUERY_STYLESHEET_FILE = DocPath.create("jquery-ui.css"); |
|
112 |
||
113 |
/** The name of the default jQuery javascript file. */ |
|
114 |
public static final DocPath JQUERY_JS_1_10 = DocPath.create("jquery-1.10.2.js"); |
|
115 |
||
116 |
/** The name of the default jQuery javascript file. */ |
|
117 |
public static final DocPath JQUERY_JS = DocPath.create("jquery-ui.js"); |
|
118 |
||
119 |
/** The name of the default jszip javascript file. */ |
|
120 |
public static final DocPath JSZIP = DocPath.create("jszip/dist/jszip.js"); |
|
121 |
||
122 |
/** The name of the default jszip javascript file. */ |
|
123 |
public static final DocPath JSZIP_MIN = DocPath.create("jszip/dist/jszip.min.js"); |
|
124 |
||
125 |
/** The name of the default jszip-utils javascript file. */ |
|
126 |
public static final DocPath JSZIPUTILS = DocPath.create("jszip-utils/dist/jszip-utils.js"); |
|
127 |
||
128 |
/** The name of the default jszip-utils javascript file. */ |
|
129 |
public static final DocPath JSZIPUTILS_MIN = DocPath.create("jszip-utils/dist/jszip-utils.min.js"); |
|
130 |
||
131 |
/** The name of the default jszip-utils javascript file. */ |
|
132 |
public static final DocPath JSZIPUTILS_IE = DocPath.create("jszip-utils/dist/jszip-utils-ie.js"); |
|
133 |
||
134 |
/** The name of the default jszip-utils javascript file. */ |
|
135 |
public static final DocPath JSZIPUTILS_IE_MIN = DocPath.create("jszip-utils/dist/jszip-utils-ie.min.js"); |
|
136 |
||
137 |
/** The name of the member search index file. */ |
|
138 |
public static final DocPath MEMBER_SEARCH_INDEX_JSON = DocPath.create("member-search-index.json"); |
|
139 |
||
140 |
/** The name of the member search index zip file. */ |
|
141 |
public static final DocPath MEMBER_SEARCH_INDEX_ZIP = DocPath.create("member-search-index.zip"); |
|
142 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
143 |
/** The name of the member search index js file. */ |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
144 |
public static final DocPath MEMBER_SEARCH_INDEX_JS = DocPath.create("member-search-index.js"); |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
145 |
|
40511 | 146 |
/** The name of the module search index file. */ |
147 |
public static final DocPath MODULE_SEARCH_INDEX_JSON = DocPath.create("module-search-index.json"); |
|
148 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
149 |
/** The name of the module search index zip file. */ |
40511 | 150 |
public static final DocPath MODULE_SEARCH_INDEX_ZIP = DocPath.create("module-search-index.zip"); |
151 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
152 |
/** The name of the module search index js file. */ |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
153 |
public static final DocPath MODULE_SEARCH_INDEX_JS = DocPath.create("module-search-index.js"); |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
154 |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
155 |
/** The name of the file for the overview frame. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
156 |
public static final DocPath OVERVIEW_FRAME = DocPath.create("overview-frame.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
157 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
158 |
/** The name of the file for the overview summary. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
159 |
public static final DocPath OVERVIEW_SUMMARY = DocPath.create("overview-summary.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
160 |
|
40500
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
161 |
public static DocPath overviewSummary(boolean frames) { |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
162 |
return frames ? OVERVIEW_SUMMARY : INDEX; |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
163 |
} |
f293dbb81a53
8162353: javadoc should provide a way to disable use of frames
jjg
parents:
40229
diff
changeset
|
164 |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
165 |
/** The name of the file for the overview tree. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
166 |
public static final DocPath OVERVIEW_TREE = DocPath.create("overview-tree.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
167 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
168 |
/** The name of the file for the package frame. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
169 |
public static final DocPath PACKAGE_FRAME = DocPath.create("package-frame.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
170 |
|
48295
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
171 |
/** The name of the file for the package list. This is to support the legacy mode. */ |
33920 | 172 |
public static final DocPath PACKAGE_LIST = DocPath.create("package-list"); |
173 |
||
174 |
/** The name of the package search index file. */ |
|
175 |
public static final DocPath PACKAGE_SEARCH_INDEX_JSON = DocPath.create("package-search-index.json"); |
|
176 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
177 |
/** The name of the package search index zip file. */ |
33920 | 178 |
public static final DocPath PACKAGE_SEARCH_INDEX_ZIP = DocPath.create("package-search-index.zip"); |
179 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
180 |
/** The name of the package search index js file. */ |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
181 |
public static final DocPath PACKAGE_SEARCH_INDEX_JS = DocPath.create("package-search-index.js"); |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
182 |
|
33920 | 183 |
/** The name of the file for the package summary. */ |
184 |
public static final DocPath PACKAGE_SUMMARY = DocPath.create("package-summary.html"); |
|
185 |
||
186 |
/** The name of the file for the package tree. */ |
|
187 |
public static final DocPath PACKAGE_TREE = DocPath.create("package-tree.html"); |
|
188 |
||
189 |
/** The name of the file for the package usage info. */ |
|
190 |
public static final DocPath PACKAGE_USE = DocPath.create("package-use.html"); |
|
191 |
||
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
192 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
193 |
* Returns the path for a type element. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
194 |
* For example, if the type element is {@code java.lang.Object}, |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
195 |
* the path is {@code java/lang/Object.html}. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
196 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
197 |
* @param typeElement the type element |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
198 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
199 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
200 |
public DocPath forClass(TypeElement typeElement) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
201 |
return (typeElement == null) |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
202 |
? DocPath.empty |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
203 |
: forPackage(utils.containingPackage(typeElement)).resolve(forName(typeElement)); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
204 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
205 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
206 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
207 |
* Returns the path for the simple name of a type element. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
208 |
* For example, if the type element is {@code java.lang.Object}, |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
209 |
* the path is {@code Object.html}. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
210 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
211 |
* @param typeElement the type element |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
212 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
213 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
214 |
public DocPath forName(TypeElement typeElement) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
215 |
return (typeElement == null) |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
216 |
? DocPath.empty |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
217 |
: new DocPath(utils.getSimpleName(typeElement) + ".html"); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
218 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
219 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
220 |
public static DocPath forModule(ModuleElement mdle) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
221 |
return mdle == null || mdle.isUnnamed() |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
222 |
? DocPath.empty |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
223 |
: DocPath.create(mdle.getQualifiedName().toString()); |
48029
e9dab2492924
8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents:
47216
diff
changeset
|
224 |
} |
e9dab2492924
8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents:
47216
diff
changeset
|
225 |
|
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
226 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
227 |
* Returns the path for the package of a type element. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
228 |
* For example, if the type element is {@code java.lang.Object}, |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
229 |
* the path is {@code java/lang}. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
230 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
231 |
* @param typeElement the type element |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
232 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
233 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
234 |
public DocPath forPackage(TypeElement typeElement) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
235 |
return (typeElement == null) |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
236 |
? DocPath.empty |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
237 |
: forPackage(utils.containingPackage(typeElement)); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
238 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
239 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
240 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
241 |
* Returns the path for a package. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
242 |
* For example, if the package is {@code java.lang}, |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
243 |
* the path is {@code java/lang}. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
244 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
245 |
* @param pkgElement the package element |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
246 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
247 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
248 |
public DocPath forPackage(PackageElement pkgElement) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
249 |
if (pkgElement == null || pkgElement.isUnnamed()) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
250 |
return DocPath.empty; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
251 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
252 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
253 |
DocPath pkgPath = DocPath.create(pkgElement.getQualifiedName().toString().replace('.', '/')); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
254 |
if (useModuleDirectories) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
255 |
ModuleElement mdle = (ModuleElement) pkgElement.getEnclosingElement(); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
256 |
return forModule(mdle).resolve(pkgPath); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
257 |
} else { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
258 |
return pkgPath; |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
259 |
} |
36526 | 260 |
} |
261 |
||
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
262 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
263 |
* Returns the inverse path for a package. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
264 |
* For example, if the package is {@code java.lang}, |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
265 |
* the inverse path is {@code ../..}. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
266 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
267 |
* @param pkgElement the package element |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
268 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
269 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
270 |
public static DocPath forRoot(PackageElement pkgElement) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
271 |
String name = (pkgElement == null || pkgElement.isUnnamed()) |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
272 |
? "" |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
273 |
: pkgElement.getQualifiedName().toString(); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
274 |
return new DocPath(name.replace('.', '/').replaceAll("[^/]+", "..")); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
275 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
276 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
277 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
278 |
* Returns a relative path from one package to another. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
279 |
* |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
280 |
* @param from the origin of the relative path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
281 |
* @param to the destination of the relative path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
282 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
283 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
284 |
public DocPath relativePath(PackageElement from, PackageElement to) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
285 |
return forRoot(from).resolve(forPackage(to)); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
286 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
287 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
288 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
289 |
* The path for the output directory for module documentation files. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
290 |
* @param mdle the module |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
291 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
292 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
293 |
public DocPath moduleDocFiles(ModuleElement mdle) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
294 |
return createModulePath(mdle, "doc-files"); |
48295
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
295 |
} |
c79d31ba84b9
8164407: Add module support for -link and -linkoffline javadoc option
bpatel
parents:
48029
diff
changeset
|
296 |
|
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
297 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
298 |
* The path for the file for a module's frame page. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
299 |
* @param mdle the module |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
300 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
301 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
302 |
public DocPath moduleFrame(ModuleElement mdle) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
303 |
return createModulePath(mdle, "frame.html"); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
304 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
305 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
306 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
307 |
* The path for the file for a module's summary page. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
308 |
* @param mdle the module |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
309 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
310 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
311 |
public DocPath moduleSummary(ModuleElement mdle) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
312 |
return createModulePath(mdle, "summary.html"); |
36526 | 313 |
} |
314 |
||
48759
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
315 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
316 |
* The path for the file for a module's summary page. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
317 |
* @param mdleName the module |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
318 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
319 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
320 |
public DocPath moduleSummary(String mdleName) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
321 |
return createModulePath(mdleName, "summary.html"); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
322 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
323 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
324 |
/** |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
325 |
* The path for the file for a module's type frame page. |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
326 |
* @param mdle the module |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
327 |
* @return the path |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
328 |
*/ |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
329 |
public DocPath moduleTypeFrame(ModuleElement mdle) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
330 |
return createModulePath(mdle, "type-frame.html"); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
331 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
332 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
333 |
private DocPath createModulePath(ModuleElement mdle, String path) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
334 |
return DocPath.create(mdle.getQualifiedName() + moduleSeparator + path); |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
335 |
} |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
336 |
|
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
337 |
private DocPath createModulePath(String moduleName, String path) { |
ffa68af7da87
8195795: Organize output files by module/package, not just package
jjg
parents:
48295
diff
changeset
|
338 |
return DocPath.create(moduleName + moduleSeparator + path); |
40229
09f4478d07e5
8154817: Fix the click-through navigation for modules
bpatel
parents:
36526
diff
changeset
|
339 |
} |
09f4478d07e5
8154817: Fix the click-through navigation for modules
bpatel
parents:
36526
diff
changeset
|
340 |
|
36526 | 341 |
/** The name of the file for the module overview frame. */ |
342 |
public static final DocPath MODULE_OVERVIEW_FRAME = DocPath.create("module-overview-frame.html"); |
|
343 |
||
22447 | 344 |
/** The name of the sub-package from which resources are read. */ |
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
345 |
public static final DocPath RESOURCES = DocPath.create("resources"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
346 |
|
33920 | 347 |
/** The name of the search javascript file. */ |
348 |
public static final DocPath SEARCH_JS = DocPath.create("search.js"); |
|
349 |
||
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
350 |
/** The name of the file for the serialized form info. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
351 |
public static final DocPath SERIALIZED_FORM = DocPath.create("serialized-form.html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
352 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
353 |
/** The name of the directory in which HTML versions of the source code |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
354 |
* are generated. |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
355 |
*/ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
356 |
public static final DocPath SOURCE_OUTPUT = DocPath.create("src-html"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
357 |
|
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
358 |
/** The name of the default stylesheet. */ |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
359 |
public static final DocPath STYLESHEET = DocPath.create("stylesheet.css"); |
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
360 |
|
33920 | 361 |
/** The name of the tag search index file. */ |
362 |
public static final DocPath TAG_SEARCH_INDEX_JSON = DocPath.create("tag-search-index.json"); |
|
363 |
||
364 |
/** The name of the tag search index zip file. */ |
|
365 |
public static final DocPath TAG_SEARCH_INDEX_ZIP = DocPath.create("tag-search-index.zip"); |
|
366 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
367 |
/** The name of the tag search index js file. */ |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
368 |
public static final DocPath TAG_SEARCH_INDEX_JS = DocPath.create("tag-search-index.js"); |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
369 |
|
33920 | 370 |
/** The name of the type search index file. */ |
371 |
public static final DocPath TYPE_SEARCH_INDEX_JSON = DocPath.create("type-search-index.json"); |
|
372 |
||
373 |
/** The name of the type search index zip file. */ |
|
374 |
public static final DocPath TYPE_SEARCH_INDEX_ZIP = DocPath.create("type-search-index.zip"); |
|
375 |
||
43370
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
376 |
/** The name of the type search index js file. */ |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
377 |
public static final DocPath TYPE_SEARCH_INDEX_JS = DocPath.create("type-search-index.js"); |
5969237f927c
8166175: javadoc search doesn't work on local doc bundles
bpatel
parents:
40511
diff
changeset
|
378 |
|
33920 | 379 |
/** The name of the image file for undo button on the search box. */ |
380 |
public static final DocPath X_IMG = DocPath.create("x.png"); |
|
381 |
||
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
diff
changeset
|
382 |
} |