Produced by Araxis Merge on 9/25/2018 2:13:05 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
# | Location | File | Last Modified |
---|---|---|---|
1 | build 3.zip\build 3\MHLTH_YS_137_Source\JavaScript\resources\javaJDF-1.8.0\src\com\sun\tools\doclets\internal\toolkit\util | DocPaths.java | Mon Jan 22 14:47:06 2018 UTC |
2 | build 3.zip\build 3\MHLTH_YS_137_Source\JavaScript\resources\javaJDF-1.8.0\src\com\sun\tools\doclets\internal\toolkit\util | DocPaths.java | Wed Sep 12 16:44:34 2018 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 276 |
Changed | 1 | 2 |
Inserted | 0 | 0 |
Removed | 0 | 0 |
Whitespace | |
---|---|
Character case | Differences in character case are significant |
Line endings | Differences in line endings (CR and LF characters) are ignored |
CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
1 | /* | |
2 | * Copyrig ht (c) 199 8, 2013, O racle and/ or its aff iliates. A ll rights reserved. | |
3 | * DO NOT ALTER OR R EMOVE COPY RIGHT NOTI CES OR THI S FILE HEA DER. | |
4 | * | |
5 | * This co de is free software; you can r edistribut e it and/o r modify i t | |
6 | * under t he terms o f the GNU General Pu blic Licen se version 2 only, a s | |
7 | * publish ed by the Free Softw are Founda tion. Ora cle design ates this | |
8 | * particu lar file a s subject to the "Cl asspath" e xception a s provided | |
9 | * by Orac le in the LICENSE fi le that ac companied this code. | |
10 | * | |
11 | * This co de is dist ributed in the hope that it wi ll be usef ul, but WI THOUT | |
12 | * ANY WAR RANTY; wit hout even the implie d warranty of MERCHA NTABILITY or | |
13 | * FITNESS FOR A PAR TICULAR PU RPOSE. Se e the GNU General Pu blic Licen se | |
14 | * version 2 for mor e details (a copy is included in the LIC ENSE file that | |
15 | * accompa nied this code). | |
16 | * | |
17 | * You sho uld have r eceived a copy of th e GNU Gene ral Public License v ersion | |
18 | * 2 along with this work; if not, write to the Fr ee Softwar e Foundati on, | |
19 | * Inc., 5 1 Franklin St, Fifth Floor, Bo ston, MA 0 2110-1301 USA. | |
20 | * | |
21 | * Please contact Or acle, 500 Oracle Par kway, Redw ood Shores , CA 94065 USA | |
22 | * or visi t www.orac le.com if you need a dditional informatio n or have any | |
23 | * questio ns. | |
24 | */ | |
25 | ||
26 | package co m.sun.tool s.doclets. internal.t oolkit.uti l; | |
27 | ||
28 | /** | |
29 | * Standar d DocPath objects. | |
30 | * | |
31 | * <p><b> This is NO T part of any suppor ted API. | |
32 | * If you write cod e that dep ends on th is, you do so at you r own risk . | |
33 | * This c ode and it s internal interface s are subj ect to cha nge or | |
34 | * deleti on without notice.</ b> | |
35 | * | |
36 | * @since 8 | |
37 | */ | |
38 | public cla ss DocPath s { | |
39 | ||
40 | /** Th e name of the file f or all cla sses, usin g frames. */ | |
41 | public static fi nal DocPat h ALLCLASS ES_FRAME = DocPath.c reate("all classes-fr ame.html") ; | |
42 | ||
43 | /** Th e name of the file f or all cla sses, with out using frames. */ | |
44 | public static fi nal DocPat h ALLCLASS ES_NOFRAME = DocPath .create("a llclasses- noframe.ht ml"); | |
45 | ||
46 | /** Th e name of the sub-di rectory fo r storing class usag e info. */ | |
47 | public static fi nal DocPat h CLASS_US E = DocPat h.create(" class-use" ); | |
48 | ||
49 | /** Th e name of the file f or constan t values. */ | |
50 | public static fi nal DocPat h CONSTANT _VALUES = DocPath.cr eate("cons tant-value s.html"); | |
51 | ||
52 | /** Th e name of the fie fo r deprecat ed element s. */ | |
53 | public static fi nal DocPat h DEPRECAT ED_LIST = DocPath.cr eate("depr ecated-lis t.html"); | |
54 | ||
55 | /** Th e name of the subdir ectory for user-prov ided addit ional docu mentation files. */ | |
56 | public static fi nal DocPat h DOC_FILE S = DocPat h.create(" doc-files" ); | |
57 | ||
58 | /** Th e name of the file f or help in fo. */ | |
59 | public static fi nal DocPat h HELP_DOC = DocPath .create("h elp-doc.ht ml"); | |
60 | ||
61 | /** Th e name of the main i ndex file. */ | |
62 | public static fi nal DocPat h INDEX = DocPath.cr eate("inde x.html"); | |
63 | ||
64 | /** Th e name of the single index fil e for all classes. * / | |
65 | public static fi nal DocPat h INDEX_AL L = DocPat h.create(" index-all. html"); | |
66 | ||
67 | /** Th e name of the direct ory for th e split in dex files. */ | |
68 | public static fi nal DocPat h INDEX_FI LES = DocP ath.create ("index-fi les"); | |
69 | ||
70 | /** Ge nerate the name of o ne of the files in t he split i ndex. */ | |
71 | public static fi nal DocPat h indexN(i nt n) { | |
72 | re turn DocPa th.create( "index-" + n + ".htm l"); | |
73 | } | |
74 | ||
75 | /** Th e name of the defaul t javascri pt file. * / | |
76 | public sta tic final DocPath JA DN S IPT = DocP ath.create ("script.j s"); | |
77 | ||
78 | /** Th e name of the file f or the ove rview fram e. */ | |
79 | public static fi nal DocPat h OVERVIEW _FRAME = D ocPath.cre ate("overv iew-frame. html"); | |
80 | ||
81 | /** Th e name of the file f or the ove rview summ ary. */ | |
82 | public static fi nal DocPat h OVERVIEW _SUMMARY = DocPath.c reate("ove rview-summ ary.html") ; | |
83 | ||
84 | /** Th e name of the file f or the ove rview tree . */ | |
85 | public static fi nal DocPat h OVERVIEW _TREE = Do cPath.crea te("overvi ew-tree.ht ml"); | |
86 | ||
87 | /** Th e name of the file f or the pac kage frame . */ | |
88 | public static fi nal DocPat h PACKAGE_ FRAME = Do cPath.crea te("packag e-frame.ht ml"); | |
89 | ||
90 | /** Th e name of the file f or the pro file frame . */ | |
91 | publi c static f inal DocPa th profile Frame(Stri ng profile Name) { | |
92 | re turn DocPa th.create( profileNam e + "-fram e.html"); | |
93 | } | |
94 | ||
95 | /** Th e name of the file f or the pro file packa ge frame. */ | |
96 | publi c static f inal DocPa th profile PackageFra me(String profileNam e) { | |
97 | re turn DocPa th.create( profileNam e + "-pack age-frame. html"); | |
98 | } | |
99 | ||
100 | /** Th e name of the file f or the pro file packa ge summary . */ | |
101 | publi c static f inal DocPa th profile PackageSum mary(Strin g profileN ame) { | |
102 | re turn DocPa th.create( profileNam e + "-pack age-summar y.html"); | |
103 | } | |
104 | ||
105 | /** Th e name of the file f or the pro file summa ry. */ | |
106 | publi c static f inal DocPa th profile Summary(St ring profi leName) { | |
107 | re turn DocPa th.create( profileNam e + "-summ ary.html") ; | |
108 | } | |
109 | ||
110 | /** Th e name of the file f or the pac kage list. */ | |
111 | public static fi nal DocPat h PACKAGE_ LIST = Doc Path.creat e("package -list"); | |
112 | ||
113 | /** Th e name of the file f or the pac kage summa ry. */ | |
114 | public static fi nal DocPat h PACKAGE_ SUMMARY = DocPath.cr eate("pack age-summar y.html"); | |
115 | ||
116 | /** Th e name of the file f or the pac kage tree. */ | |
117 | public static fi nal DocPat h PACKAGE_ TREE = Doc Path.creat e("package -tree.html "); | |
118 | ||
119 | /** Th e name of the file f or the pac kage usage info. */ | |
120 | public static fi nal DocPat h PACKAGE_ USE = DocP ath.create ("package- use.html") ; | |
121 | ||
122 | /** Th e name of the file f or the ove rview fram e. */ | |
123 | public static fi nal DocPat h PROFILE_ OVERVIEW_F RAME = Doc Path.creat e("profile -overview- frame.html "); | |
124 | ||
125 | /** Th e name of the sub-pa ckage from which res ources are read. */ | |
126 | public static fi nal DocPat h RESOURCE S = DocPat h.create(" resources" ); | |
127 | ||
128 | /** Th e name of the file f or the ser ialized fo rm info. * / | |
129 | public static fi nal DocPat h SERIALIZ ED_FORM = DocPath.cr eate("seri alized-for m.html"); | |
130 | ||
131 | /** Th e name of the direct ory in whi ch HTML ve rsions of the source code | |
132 | * ar e generate d. | |
133 | */ | |
134 | public static fi nal DocPat h SOURCE_O UTPUT = Do cPath.crea te("src-ht ml"); | |
135 | ||
136 | /** Th e name of the defaul t styleshe et. */ | |
137 | public static fi nal DocPat h STYLESHE ET = DocPa th.create( "styleshee t.css"); | |
138 | ||
139 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.