49
49
* deletion without notice.</b>
50
50
*/
51
51
public class Head extends Content {
52
- private final String docletVersion ;
52
+ private final Runtime . Version docletVersion ;
53
53
private final Date generatedDate ;
54
54
private final DocPath pathToRoot ;
55
55
private String title ;
@@ -74,9 +74,9 @@ public class Head extends Content {
74
74
* recording the time the file was created.
75
75
* The doclet version should also be provided for recording in the file.
76
76
* @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
78
78
*/
79
- public Head (DocPath path , String docletVersion , Date generatedDate ) {
79
+ public Head (DocPath path , Runtime . Version docletVersion , Date generatedDate ) {
80
80
this .docletVersion = docletVersion ;
81
81
this .generatedDate = generatedDate ;
82
82
pathToRoot = path .parent ().invert ();
@@ -294,9 +294,8 @@ private Content toContent() {
294
294
295
295
private Comment getGeneratedBy (boolean timestamp , Date now ) {
296
296
String text = "Generated by javadoc" ; // marker string, deliberately not localized
297
- text += " (" + docletVersion + ")" ;
298
297
if (timestamp ) {
299
- text += " on " + now ;
298
+ text += " (" + docletVersion . feature () + ") on " + now ;
300
299
}
301
300
return new Comment (text );
302
301
}
0 commit comments