< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Resources.java

Print this page
rev 58344 : records implementation

*** 47,56 **** --- 47,57 ---- public final String enumSummary; public final String errorSummary; public final String exceptionSummary; public final String interfaceSummary; public final String packageSummary; + public final String recordSummary; protected ResourceBundle commonBundle; protected ResourceBundle docletBundle; /**
*** 74,83 **** --- 75,85 ---- this.enumSummary = getText("doclet.Enum_Summary"); this.errorSummary = getText("doclet.Error_Summary"); this.exceptionSummary = getText("doclet.Exception_Summary"); this.interfaceSummary = getText("doclet.Interface_Summary"); this.packageSummary = getText("doclet.Package_Summary"); + this.recordSummary = getText("doclet.Record_Summary"); } /** * Gets the string for the given key from one of the doclet's * resource bundles.
< prev index next >