--- old/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PropertyWriterImpl.java Mon Oct 16 17:19:42 2017 +++ new/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PropertyWriterImpl.java Mon Oct 16 17:19:42 2017 @@ -269,10 +269,16 @@ public void addInheritedSummaryLabel(TypeElement typeElement, Content inheritedTree) { Content classLink = writer.getPreQualifiedClassLink( LinkInfoImpl.Kind.MEMBER, typeElement, false); - Content label = new StringContent( - utils.isClass(typeElement) - ? configuration.getText("doclet.Properties_Inherited_From_Class") - : configuration.getText("doclet.Properties_Inherited_From_Interface")); + Content label; + if (configuration.summarizeOverriddenMethods) { + label = new StringContent(utils.isClass(typeElement) + ? configuration.getText("doclet.Properties_Declared_In_Class") + : configuration.getText("doclet.Properties_Declared_In_Interface")); + } else { + label = new StringContent(utils.isClass(typeElement) + ? configuration.getText("doclet.Properties_Inherited_From_Class") + : configuration.getText("doclet.Properties_Inherited_From_Interface")); + } Content labelHeading = HtmlTree.HEADING(HtmlConstants.INHERITED_SUMMARY_HEADING, label); labelHeading.addContent(Contents.SPACE);