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

changeset 2198
f42a22e2b2cd
parent 2147
130b8c0e570e
child 2525
2eb010b6cb22
equal deleted inserted replaced
2197:8043b9cf31ab 2198:f42a22e2b2cd
329 protected Comment getGeneratedBy(boolean timestamp) { 329 protected Comment getGeneratedBy(boolean timestamp) {
330 String text = "Generated by javadoc"; // marker string, deliberately not localized 330 String text = "Generated by javadoc"; // marker string, deliberately not localized
331 if (timestamp) { 331 if (timestamp) {
332 Calendar calendar = new GregorianCalendar(TimeZone.getDefault()); 332 Calendar calendar = new GregorianCalendar(TimeZone.getDefault());
333 Date today = calendar.getTime(); 333 Date today = calendar.getTime();
334 text += " ("+ ConfigurationImpl.BUILD_DATE + ") on " + today; 334 text += " ("+ configuration.getDocletSpecificBuildDate() + ") on " + today;
335 } 335 }
336 return new Comment(text); 336 return new Comment(text);
337 } 337 }
338 } 338 }

mercurial