Skip to content

Commit 545d56d

Browse files
committedJun 30, 2020
Merge
2 parents 7d54e71 + 46ff8fd commit 545d56d

File tree

8 files changed

+17
-27
lines changed

8 files changed

+17
-27
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/Versions.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
package jdk.javadoc.internal;
2727

2828
import java.util.ResourceBundle;
29+
import java.util.stream.Collectors;
2930

3031
import static java.util.ResourceBundle.getBundle;
3132

@@ -77,15 +78,18 @@ public static Runtime.Version javadocVersion() throws RuntimeException {
7778
/**
7879
* Returns a short string representation of the provided version.
7980
*
80-
* <p> Examples of strings returned from this method are: "15" and
81-
* "15-internal".
81+
* <p> The string contains the dotted representation of the version number,
82+
* followed by the prerelease info, if any.
83+
* For example, "15", "15.1", "15.0.1", "15-internal".
8284
*
8385
* @return a short string representation of the provided version
8486
*
8587
* @throws NullPointerException if {@code v == null}
8688
*/
8789
public static String shortVersionStringOf(Runtime.Version v) {
88-
String svstr = String.valueOf(v.feature());
90+
String svstr = v.version().stream()
91+
.map(Object::toString)
92+
.collect(Collectors.joining("."));
8993
if (v.pre().isPresent()) {
9094
svstr += "-" + v.pre().get();
9195
}

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlConfiguration.java

-5
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,6 @@ public Runtime.Version getDocletVersion() {
159159
return docletVersion;
160160
}
161161

162-
@Override
163-
public String getDocletVersionString() {
164-
return Versions.shortVersionStringOf(docletVersion);
165-
}
166-
167162
@Override
168163
public Resources getDocResources() {
169164
return docResources;

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDocletWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public void printHtmlDocument(List<String> metakeywords,
431431
Content htmlComment = contents.newPage;
432432
List<DocPath> additionalStylesheets = configuration.getAdditionalStylesheets();
433433
additionalStylesheets.addAll(localStylesheets);
434-
Head head = new Head(path, configuration.getDocletVersionString(), configuration.startTime)
434+
Head head = new Head(path, configuration.getDocletVersion(), configuration.startTime)
435435
.setTimestamp(!options.noTimestamp())
436436
.setDescription(description)
437437
.setGenerator(getGenerator(getClass()))

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/IndexRedirectWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private IndexRedirectWriter(HtmlConfiguration configuration, DocPath filename, D
7575
*/
7676
private void generateIndexFile() throws DocFileIOException {
7777
Content htmlComment = contents.newPage;
78-
Head head = new Head(path, configuration.getDocletVersionString(), configuration.startTime)
78+
Head head = new Head(path, configuration.getDocletVersion(), configuration.startTime)
7979
.setTimestamp(!options.noTimestamp())
8080
.setDescription("index redirect")
8181
.setGenerator(getGenerator(getClass()))

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SourceToHTMLConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public void convertClass(TypeElement te, DocPath outputdir)
235235
* @param path the path for the file.
236236
*/
237237
private void writeToFile(Content body, DocPath path, TypeElement te) throws DocFileIOException {
238-
Head head = new Head(path, configuration.getDocletVersionString(), configuration.startTime)
238+
Head head = new Head(path, configuration.getDocletVersion(), configuration.startTime)
239239
// .setTimestamp(!options.notimestamp) // temporary: compatibility!
240240
.setTitle(resources.getText("doclet.Window_Source_title"))
241241
// .setCharset(options.charset) // temporary: compatibility!

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/Head.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* deletion without notice.</b>
5050
*/
5151
public class Head extends Content {
52-
private final String docletVersion;
52+
private final Runtime.Version docletVersion;
5353
private final Date generatedDate;
5454
private final DocPath pathToRoot;
5555
private String title;
@@ -74,9 +74,9 @@ public class Head extends Content {
7474
* recording the time the file was created.
7575
* The doclet version should also be provided for recording in the file.
7676
* @param path the path for the file that will include this HEAD element
77-
* @param docletVersion a string identifying the doclet version
77+
* @param docletVersion the doclet version
7878
*/
79-
public Head(DocPath path, String docletVersion, Date generatedDate) {
79+
public Head(DocPath path, Runtime.Version docletVersion, Date generatedDate) {
8080
this.docletVersion = docletVersion;
8181
this.generatedDate = generatedDate;
8282
pathToRoot = path.parent().invert();
@@ -294,9 +294,8 @@ private Content toContent() {
294294

295295
private Comment getGeneratedBy(boolean timestamp, Date now) {
296296
String text = "Generated by javadoc"; // marker string, deliberately not localized
297-
text += " (" + docletVersion + ")";
298297
if (timestamp) {
299-
text += " on " + now;
298+
text += " ("+ docletVersion.feature() + ") on " + now;
300299
}
301300
return new Comment(text);
302301
}

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/BaseConfiguration.java

-8
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,6 @@ public abstract class BaseConfiguration {
157157
*/
158158
public abstract Runtime.Version getDocletVersion();
159159

160-
/**
161-
* Returns a short string representation of the version returned by
162-
* {@linkplain #getDocletVersion()}.
163-
*
164-
* @return a short string representation of the version
165-
*/
166-
public abstract String getDocletVersionString();
167-
168160
/**
169161
* This method should be defined in all those doclets (configurations),
170162
* which want to derive themselves from this BaseConfiguration. This method

‎test/langtools/jdk/javadoc/doclet/testGeneratedBy/TestGeneratedBy.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ void checkTimestamps(boolean timestamp) {
7979
}
8080

8181
void checkTimestamps(boolean timestamp, String... files) {
82-
String version = System.getProperty("java.version");
83-
String genBy = "Generated by javadoc (" + version + ")";
84-
if (timestamp) genBy += " on ";
82+
String version = System.getProperty("java.specification.version");
83+
String genBy = "Generated by javadoc";
84+
if (timestamp) genBy += " (" + version + ") on ";
8585

8686
for (String file: files) {
8787
// genBy is the current standard "Generated by" text

0 commit comments

Comments
 (0)
Please sign in to comment.