# HG changeset patch # User bpatel # Date 1382139282 25200 # Node ID 130b8c0e570e3d2441de31acc299a799b303d3bc # Parent 7de97abc4a5c59d009f18df180fcf50c48d06ec3 8026567: Use meaningful style names for strong and italic styles. Reviewed-by: jjg diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AbstractExecutableMemberWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AbstractExecutableMemberWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AbstractExecutableMemberWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -101,10 +101,10 @@ Content tdSummary) { ExecutableMemberDoc emd = (ExecutableMemberDoc)member; String name = emd.name(); - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, cd, (MemberDoc) emd, name, false)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); addParameters(emd, false, code, name.length() - 1); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AbstractIndexWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AbstractIndexWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AbstractIndexWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -176,7 +176,7 @@ String name = (member instanceof ExecutableMemberDoc)? member.name() + ((ExecutableMemberDoc)member).flatSignature() : member.name(); - Content span = HtmlTree.SPAN(HtmlStyle.strong, + Content span = HtmlTree.SPAN(HtmlStyle.memberNameLink, getDocLink(LinkInfoImpl.Kind.INDEX, member, name)); Content dt = HtmlTree.DT(span); dt.addContent(" - "); @@ -198,7 +198,7 @@ */ protected void addComment(ProgramElementDoc element, Content contentTree) { Tag[] tags; - Content span = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); + Content span = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); HtmlTree div = new HtmlTree(HtmlTag.DIV); div.addStyle(HtmlStyle.block); if (Util.isDeprecated(element)) { diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AbstractMemberWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AbstractMemberWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AbstractMemberWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -480,7 +480,7 @@ if (cd != null && !(pgmdoc instanceof ConstructorDoc) && !(pgmdoc instanceof ClassDoc)) { HtmlTree name = new HtmlTree(HtmlTag.SPAN); - name.addStyle(HtmlStyle.strong); + name.addStyle(HtmlStyle.typeNameLabel); name.addContent(cd.name() + "."); tdLast.addContent(name); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeFieldWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeFieldWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeFieldWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -237,9 +237,9 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, (MemberDoc) member, member.name(), false)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeRequiredMemberWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeRequiredMemberWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeRequiredMemberWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -239,9 +239,9 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, (MemberDoc) member, member.name(), false)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AnnotationTypeWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -227,7 +227,7 @@ addSrcLink(annotationType, annotationName, pre); pre.addContent(parameterLinks); } else { - Content span = HtmlTree.SPAN(HtmlStyle.strong, annotationName); + Content span = HtmlTree.SPAN(HtmlStyle.memberNameLabel, annotationName); span.addContent(parameterLinks); pre.addContent(span); } @@ -262,8 +262,8 @@ annotationInfoTree.addContent(hr); Tag[] deprs = annotationType.tags("deprecated"); if (Util.isDeprecated(annotationType)) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); - Content div = HtmlTree.DIV(HtmlStyle.block, strong); + Content deprLabel = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); + Content div = HtmlTree.DIV(HtmlStyle.block, deprLabel); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); if (commentTags.length > 0) { diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/ClassWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -254,7 +254,7 @@ addSrcLink(classDoc, className, pre); pre.addContent(parameterLinks); } else { - Content span = HtmlTree.SPAN(HtmlStyle.strong, className); + Content span = HtmlTree.SPAN(HtmlStyle.typeNameLabel, className); span.addContent(parameterLinks); pre.addContent(span); } @@ -547,8 +547,8 @@ classInfoTree.addContent(hr); Tag[] deprs = classDoc.tags("deprecated"); if (Util.isDeprecated(classDoc)) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); - Content div = HtmlTree.DIV(HtmlStyle.block, strong); + Content deprLabel = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); + Content div = HtmlTree.DIV(HtmlStyle.block, deprLabel); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); if (commentTags.length > 0) { diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/EnumConstantWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/EnumConstantWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/EnumConstantWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -224,9 +224,9 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, (MemberDoc) member, member.name(), false)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/FieldWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/FieldWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/FieldWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -140,11 +140,11 @@ holder.typeName() : holder.qualifiedTypeName(), false); Content codeLink = HtmlTree.CODE(link); - Content strong = HtmlTree.SPAN(HtmlStyle.strong, holder.isClass()? + Content descfrmLabel = HtmlTree.SPAN(HtmlStyle.descfrmTypeLabel, holder.isClass()? writer.descfrmClassLabel : writer.descfrmInterfaceLabel); - strong.addContent(writer.getSpace()); - strong.addContent(codeLink); - fieldDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, strong)); + descfrmLabel.addContent(writer.getSpace()); + descfrmLabel.addContent(codeLink); + fieldDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, descfrmLabel)); writer.addInlineComment(field, fieldDocTree); } } @@ -258,9 +258,9 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, cd , (MemberDoc) member, member.name(), false)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/HelpWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/HelpWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HelpWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -316,7 +316,7 @@ liConst.addContent(constPara); ul.addContent(liConst); Content divContent = HtmlTree.DIV(HtmlStyle.contentContainer, ul); - Content line30 = HtmlTree.SPAN(HtmlStyle.italic, getResource("doclet.Help_line_30")); + Content line30 = HtmlTree.SPAN(HtmlStyle.emphasizedPhrase, getResource("doclet.Help_line_30")); divContent.addContent(line30); contentTree.addContent(divContent); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -1051,7 +1051,7 @@ public Content italicsClassName(ClassDoc cd, boolean qual) { Content name = new StringContent((qual)? cd.qualifiedName(): cd.name()); - return (cd.isInterface())? HtmlTree.SPAN(HtmlStyle.italic, name): name; + return (cd.isInterface())? HtmlTree.SPAN(HtmlStyle.interfaceName, name): name; } /** @@ -1567,7 +1567,7 @@ Content div; Content result = commentTagsToContent(null, doc, tags, first); if (depr) { - Content italic = HtmlTree.SPAN(HtmlStyle.italic, result); + Content italic = HtmlTree.SPAN(HtmlStyle.deprecationComment, result); div = HtmlTree.DIV(HtmlStyle.block, italic); htmltree.addContent(div); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/MethodWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/MethodWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/MethodWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -160,11 +160,11 @@ holder.typeName() : holder.qualifiedTypeName(), false); Content codelLink = HtmlTree.CODE(link); - Content strong = HtmlTree.SPAN(HtmlStyle.strong, holder.asClassDoc().isClass()? + Content descfrmLabel = HtmlTree.SPAN(HtmlStyle.descfrmTypeLabel, holder.asClassDoc().isClass()? writer.descfrmClassLabel : writer.descfrmInterfaceLabel); - strong.addContent(writer.getSpace()); - strong.addContent(codelLink); - methodDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, strong)); + descfrmLabel.addContent(writer.getSpace()); + descfrmLabel.addContent(codelLink); + methodDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, descfrmLabel)); writer.addInlineComment(method, methodDocTree); } } @@ -310,7 +310,7 @@ label = writer.specifiedByLabel; context = LinkInfoImpl.Kind.METHOD_SPECIFIED_BY; } - Content dt = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, label)); + Content dt = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.overrideSpecifyLabel, label)); dl.addContent(dt); Content overriddenTypeLink = writer.getLink(new LinkInfoImpl(writer.configuration, context, overriddenType)); @@ -365,7 +365,7 @@ Content intfaclink = writer.getLink(new LinkInfoImpl( writer.configuration, LinkInfoImpl.Kind.METHOD_SPECIFIED_BY, intfac)); Content codeIntfacLink = HtmlTree.CODE(intfaclink); - Content dt = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, writer.specifiedByLabel)); + Content dt = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.overrideSpecifyLabel, writer.specifiedByLabel)); dl.addContent(dt); Content methlink = writer.getDocLink( LinkInfoImpl.Kind.MEMBER, implementedMeth, diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/NestedClassWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/NestedClassWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/NestedClassWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -166,9 +166,9 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getLink(new LinkInfoImpl(configuration, context, (ClassDoc)member))); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/PackageFrameWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/PackageFrameWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/PackageFrameWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -183,7 +183,7 @@ printedHeader = true; } Content arr_i_name = new StringContent(arr[i].name()); - if (arr[i].isInterface()) arr_i_name = HtmlTree.SPAN(HtmlStyle.italic, arr_i_name); + if (arr[i].isInterface()) arr_i_name = HtmlTree.SPAN(HtmlStyle.interfaceName, arr_i_name); Content link = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.PACKAGE_FRAME, arr[i]).label(arr_i_name).target("classFrame")); Content li = HtmlTree.LI(link); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/PackageTreeWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/PackageTreeWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/PackageTreeWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -155,7 +155,7 @@ * @param div the content tree to which the link will be added */ protected void addLinkToMainTree(Content div) { - Content span = HtmlTree.SPAN(HtmlStyle.strong, + Content span = HtmlTree.SPAN(HtmlStyle.packageHierarchyLabel, getResource("doclet.Package_Hierarchies")); div.addContent(span); HtmlTree ul = new HtmlTree (HtmlTag.UL); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/PackageWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/PackageWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/PackageWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -141,7 +141,7 @@ if (Util.isDeprecated(packageDoc)) { HtmlTree deprDiv = new HtmlTree(HtmlTag.DIV); deprDiv.addStyle(HtmlStyle.deprecatedContent); - Content deprPhrase = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); + Content deprPhrase = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); deprDiv.addContent(deprPhrase); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageFrameWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageFrameWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageFrameWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -174,7 +174,7 @@ printedHeader = true; } Content arr_i_name = new StringContent(arr[i].name()); - if (arr[i].isInterface()) arr_i_name = HtmlTree.SPAN(HtmlStyle.italic, arr_i_name); + if (arr[i].isInterface()) arr_i_name = HtmlTree.SPAN(HtmlStyle.interfaceName, arr_i_name); Content link = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.PACKAGE_FRAME, arr[i]).label(arr_i_name).target("classFrame")); Content li = HtmlTree.LI(link); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/ProfilePackageWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -158,7 +158,7 @@ if (Util.isDeprecated(packageDoc)) { HtmlTree deprDiv = new HtmlTree(HtmlTag.DIV); deprDiv.addStyle(HtmlStyle.deprecatedContent); - Content deprPhrase = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); + Content deprPhrase = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); deprDiv.addContent(deprPhrase); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/ProfileWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/ProfileWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/ProfileWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -187,7 +187,7 @@ deprs = pkg.tags("deprecated"); HtmlTree deprDiv = new HtmlTree(HtmlTag.DIV); deprDiv.addStyle(HtmlStyle.deprecatedContent); - Content deprPhrase = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); + Content deprPhrase = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); deprDiv.addContent(deprPhrase); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/PropertyWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/PropertyWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/PropertyWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -136,11 +136,11 @@ holder.typeName() : holder.qualifiedTypeName(), false); Content codeLink = HtmlTree.CODE(link); - Content strong = HtmlTree.SPAN(HtmlStyle.strong, holder.isClass()? + Content descfrmLabel = HtmlTree.SPAN(HtmlStyle.descfrmTypeLabel, holder.isClass()? writer.descfrmClassLabel : writer.descfrmInterfaceLabel); - strong.addContent(writer.getSpace()); - strong.addContent(codeLink); - propertyDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, strong)); + descfrmLabel.addContent(writer.getSpace()); + descfrmLabel.addContent(codeLink); + propertyDocTree.addContent(HtmlTree.DIV(HtmlStyle.block, descfrmLabel)); writer.addInlineComment(property, propertyDocTree); } } @@ -255,14 +255,14 @@ */ protected void addSummaryLink(LinkInfoImpl.Kind context, ClassDoc cd, ProgramElementDoc member, Content tdSummary) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, + Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getDocLink(context, cd, (MemberDoc) member, member.name().substring(0, member.name().lastIndexOf("Property")), false, true)); - Content code = HtmlTree.CODE(strong); + Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/SubWriterHolderWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/SubWriterHolderWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/SubWriterHolderWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -175,8 +175,8 @@ Tag[] deprs = member.tags("deprecated"); Content div; if (Util.isDeprecated((ProgramElementDoc) member)) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); - div = HtmlTree.DIV(HtmlStyle.block, strong); + Content deprLabel = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); + div = HtmlTree.DIV(HtmlStyle.block, deprLabel); div.addContent(getSpace()); if (deprs.length > 0) { addInlineDeprecatedComment(member, deprs[0], div); @@ -186,8 +186,8 @@ } else { ClassDoc cd = ((ProgramElementDoc)member).containingClass(); if (cd != null && Util.isDeprecated(cd)) { - Content strong = HtmlTree.SPAN(HtmlStyle.strong, deprecatedPhrase); - div = HtmlTree.DIV(HtmlStyle.block, strong); + Content deprLabel = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, deprecatedPhrase); + div = HtmlTree.DIV(HtmlStyle.block, deprLabel); div.addContent(getSpace()); tdSummary.addContent(div); } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java Fri Oct 18 16:34:42 2013 -0700 @@ -97,7 +97,7 @@ Tag[] deprs = doc.tags("deprecated"); if (doc instanceof ClassDoc) { if (Util.isDeprecated((ProgramElementDoc) doc)) { - result.addContent(HtmlTree.SPAN(HtmlStyle.strong, + result.addContent(HtmlTree.SPAN(HtmlStyle.deprecatedLabel, new StringContent(configuration.getText("doclet.Deprecated")))); result.addContent(RawHtml.nbsp); if (deprs.length > 0) { @@ -112,18 +112,18 @@ } else { MemberDoc member = (MemberDoc) doc; if (Util.isDeprecated((ProgramElementDoc) doc)) { - result.addContent(HtmlTree.SPAN(HtmlStyle.strong, + result.addContent(HtmlTree.SPAN(HtmlStyle.deprecatedLabel, new StringContent(configuration.getText("doclet.Deprecated")))); result.addContent(RawHtml.nbsp); if (deprs.length > 0) { Content body = commentTagsToOutput(null, doc, deprs[0].inlineTags(), false); if (!body.isEmpty()) - result.addContent(HtmlTree.SPAN(HtmlStyle.italic, body)); + result.addContent(HtmlTree.SPAN(HtmlStyle.deprecationComment, body)); } } else { if (Util.isDeprecated(member.containingClass())) { - result.addContent(HtmlTree.SPAN(HtmlStyle.strong, + result.addContent(HtmlTree.SPAN(HtmlStyle.deprecatedLabel, new StringContent(configuration.getText("doclet.Deprecated")))); result.addContent(RawHtml.nbsp); } @@ -151,7 +151,7 @@ * {@inheritDoc} */ public Content getParamHeader(String header) { - HtmlTree result = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, + HtmlTree result = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.paramLabel, new StringContent(header))); return result; } @@ -186,7 +186,7 @@ */ public Content returnTagOutput(Tag returnTag) { ContentBuilder result = new ContentBuilder(); - result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, + result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.returnLabel, new StringContent(configuration.getText("doclet.Returns"))))); result.addContent(HtmlTree.DD(htmlWriter.commentTagsToContent( returnTag, null, returnTag.inlineTags(), false))); @@ -231,7 +231,7 @@ return body; ContentBuilder result = new ContentBuilder(); - result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, + result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.seeLabel, new StringContent(configuration.getText("doclet.See_Also"))))); result.addContent(HtmlTree.DD(body)); return result; @@ -250,7 +250,7 @@ */ public Content simpleTagOutput(Tag[] simpleTags, String header) { ContentBuilder result = new ContentBuilder(); - result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, new RawHtml(header)))); + result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.simpleTagLabel, new RawHtml(header)))); ContentBuilder body = new ContentBuilder(); for (int i = 0; i < simpleTags.length; i++) { if (i > 0) { @@ -268,7 +268,7 @@ */ public Content simpleTagOutput(Tag simpleTag, String header) { ContentBuilder result = new ContentBuilder(); - result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, new RawHtml(header)))); + result.addContent(HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.simpleTagLabel, new RawHtml(header)))); Content body = htmlWriter.commentTagsToContent( simpleTag, null, simpleTag.inlineTags(), false); result.addContent(HtmlTree.DD(body)); @@ -279,7 +279,7 @@ * {@inheritDoc} */ public Content getThrowsHeader() { - HtmlTree result = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.strong, + HtmlTree result = HtmlTree.DT(HtmlTree.SPAN(HtmlStyle.throwsLabel, new StringContent(configuration.getText("doclet.Throws")))); return result; } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/TreeWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/TreeWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/TreeWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -131,7 +131,7 @@ return; } if (!classesonly) { - Content span = HtmlTree.SPAN(HtmlStyle.strong, + Content span = HtmlTree.SPAN(HtmlStyle.packageHierarchyLabel, getResource("doclet.Package_Hierarchies")); contentTree.addContent(span); HtmlTree ul = new HtmlTree(HtmlTag.UL); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlDocWriter.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlDocWriter.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlDocWriter.java Fri Oct 18 16:34:42 2013 -0700 @@ -236,7 +236,7 @@ String stylename, String title, String target) { Content body = label; if (strong) { - body = HtmlTree.SPAN(HtmlStyle.strong, body); + body = HtmlTree.SPAN(HtmlStyle.typeNameLink, body); } if (stylename != null && stylename.length() != 0) { HtmlTree t = new HtmlTree(HtmlTag.FONT, body); diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlStyle.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlStyle.java Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlStyle.java Fri Oct 18 16:34:42 2013 -0700 @@ -52,37 +52,51 @@ constantValuesContainer, contentContainer, deprecatedContent, + deprecatedLabel, deprecatedSummary, + deprecationComment, description, + descfrmTypeLabel, details, docSummary, + emphasizedPhrase, header, horizontal, footer, indexContainer, indexHeader, inheritance, - italic, + interfaceName, legalCopy, + memberNameLabel, + memberNameLink, memberSummary, nameValue, navBarCell1Rev, navList, + overrideSpecifyLabel, overviewSummary, + packageHierarchyLabel, + paramLabel, + returnLabel, rowColor, + seeLabel, serializedFormContainer, + simpleTagLabel, skipNav, sourceContainer, sourceLineNo, - strong, subNav, subNavList, subTitle, summary, tabEnd, tableTab, + throwsLabel, title, topNav, + typeNameLabel, + typeNameLink, typeSummary, useSummary; } diff -r 7de97abc4a5c -r 130b8c0e570e src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css Fri Oct 18 15:03:34 2013 -0700 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/stylesheet.css Fri Oct 18 16:34:42 2013 -0700 @@ -514,9 +514,11 @@ display:block; margin:3px 0 0 0; } -.strong { +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } -.italic { +.deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/AuthorDD/AuthorDD.java --- a/test/com/sun/javadoc/AuthorDD/AuthorDD.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/AuthorDD/AuthorDD.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4651598 + * @bug 4651598 8026567 * @summary Javadoc wrongly inserts tags when using multiple @author tags * @author dkramer * @run main AuthorDD @@ -86,12 +86,12 @@ // Test single @since tag: - { "
Since:
"+NL+"
JDK 1.0
", + { "
Since:
"+NL+"
JDK 1.0
", BUGID + FS + "p1" + FS + "C1.html" }, // Test multiple @author tags: - { "
Author:
"+NL+"
Doug Kramer, Jamie, Neal
", + { "
Author:
"+NL+"
Doug Kramer, Jamie, Neal
", BUGID + FS + "p1" + FS + "C1.html" }, }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testAnnotationTypes/TestAnnotationTypes.java --- a/test/com/sun/javadoc/testAnnotationTypes/TestAnnotationTypes.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testAnnotationTypes/TestAnnotationTypes.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4973609 8015249 8025633 + * @bug 4973609 8015249 8025633 8026567 * @summary Make sure that annotation types with 0 members does not have * extra HR tags. * @author jamieh @@ -55,7 +55,7 @@ {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html", "

Field Summary

"}, {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html", - "DEFAULT_NAME" + " "}, {BUG_ID + FS + "pkg" + FS + "AnnotationTypeField.html", diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testClassCrossReferences/TestClassCrossReferences.java --- a/test/com/sun/javadoc/testClassCrossReferences/TestClassCrossReferences.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testClassCrossReferences/TestClassCrossReferences.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4652655 4857717 8025633 + * @bug 4652655 4857717 8025633 8026567 * @summary This test verifies that class cross references work properly. * @author jamieh * @library ../lib/ @@ -48,7 +48,7 @@ "Link to external member gcd"}, {BUG_ID + FS + "C.html", - "
" + NL + "
Overrides:
" + NL + + "
" + NL + "
Overrides:
" + NL + "
toString in class java.lang.Object
" + NL + "
"} }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testClassTree/TestClassTree.java --- a/test/com/sun/javadoc/testClassTree/TestClassTree.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testClassTree/TestClassTree.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4632553 4973607 + * @bug 4632553 4973607 8026567 * @summary No need to include type name (class, interface, etc.) before * every single type in class tree. * Make sure class tree includes heirarchy for enums and annotation @@ -49,12 +49,12 @@ private static final String[][] TEST = { {BUG_ID + FS + "pkg" + FS + "package-tree.html", "" + NL + "" + NL + "" }, }; private static final String[][] NEGATED_TEST = { {BUG_ID + FS + "pkg" + FS + "package-tree.html", "
  • class pkg.ParentClass
  • "} + "title=\"class in pkg\">ParentClass"} }; /** diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testConstructorIndent/TestConstructorIndent.java --- a/test/com/sun/javadoc/testConstructorIndent/TestConstructorIndent.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testConstructorIndent/TestConstructorIndent.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4904037 + * @bug 4904037 8026567 * @summary The constructor comments should be surrounded by *
    . Check for this in the output. * @author jamieh @@ -47,7 +47,7 @@ private static final String[][] TEST = { {BUG_ID + FS + "C.html", "
    " + "This is just a simple constructor.
    " + NL + - "
    " + NL + "
    Parameters:
    " + NL + + "
    " + NL + "
    Parameters:
    " + NL + "
    i - a param.
    " + NL +"
    " } }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testDeprecatedDocs/TestDeprecatedDocs.java --- a/test/com/sun/javadoc/testDeprecatedDocs/TestDeprecatedDocs.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testDeprecatedDocs/TestDeprecatedDocs.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4927552 + * @bug 4927552 8026567 * @summary * @author jamieh * @library ../lib/ @@ -76,20 +76,20 @@ {TARGET_FILE, "pkg.DeprecatedClassByAnnotation.field"}, {TARGET_FILE2, "
    @Deprecated" + NL +
    -                 "public class DeprecatedClassByAnnotation" + NL +
    +                 "public class DeprecatedClassByAnnotation" + NL +
                      "extends java.lang.Object
    "}, {TARGET_FILE2, "
    @Deprecated" + NL +
                      "public int field
    " + NL + - "
    Deprecated. 
    "}, + "
    Deprecated. 
    "}, {TARGET_FILE2, "
    @Deprecated" + NL +
                      "public DeprecatedClassByAnnotation()
    " + NL + - "
    Deprecated. 
    "}, + "
    Deprecated. 
    "}, {TARGET_FILE2, "
    @Deprecated" + NL +
                      "public void method()
    " + NL + - "
    Deprecated. 
    "}, + "
    Deprecated. 
    "}, }; private static final String[][] NEGATED_TEST = NO_TEST; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testExternalOverridenMethod/TestExternalOverridenMethod.java --- a/test/com/sun/javadoc/testExternalOverridenMethod/TestExternalOverridenMethod.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testExternalOverridenMethod/TestExternalOverridenMethod.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4857717 8025633 + * @bug 4857717 8025633 8026567 * @summary Test to make sure that externally overriden and implemented methods * are documented properly. The method should still include "implements" or * "overrides" documentation even though the method is external. @@ -38,13 +38,13 @@ private static final String BUG_ID = "4857717"; private static final String[][] TEST = { {BUG_ID + FS + "pkg" + FS + "XReader.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    read in class " + "FilterReader
    "}, {BUG_ID + FS + "pkg" + FS + "XReader.html", - "
    Specified by:
    " + NL + + "
    Specified by:
    " + NL + "
    readInt in interface " + "C4<E extends C4<E>>" + "public abstract class C4<E extends C4<E>>" }, }; private static final String[][] NEGATED_TEST = diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testHtmlDefinitionListTag/TestHtmlDefinitionListTag.java --- a/test/com/sun/javadoc/testHtmlDefinitionListTag/TestHtmlDefinitionListTag.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testHtmlDefinitionListTag/TestHtmlDefinitionListTag.java Fri Oct 18 16:34:42 2013 -0700 @@ -25,7 +25,7 @@ /* * @test - * @bug 6786690 6820360 8025633 + * @bug 6786690 6820360 8025633 8026567 * @summary This test verifies the nesting of definition list tags. * @author Bhavesh Patel * @library ../lib/ @@ -43,7 +43,7 @@ // for default value. private static final String[][] TEST_ALL = { {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    public class " +
    -                 "C1" + NL +
    +                 "C1" + NL +
                      "extends java.lang.Object" + NL + "implements java.io.Serializable
    "}, {BUG_ID + FS + "pkg1" + FS + "C4.html", "
    " + NL + "
    Default:
    " + NL + "
    true
    " + NL + @@ -54,64 +54,64 @@ // enclosing comments, tags and deprecated information. private static final String[][] TEST_CMNT_DEPR = { {BUG_ID + FS + "pkg1" + FS + "package-summary.html", "
    " + NL + - "
    Since:
    " + NL + + "
    Since:
    " + NL + "
    JDK1.0
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:
    " + NL + - "
    JDK1.0
    " + NL + "
    See Also:
    " + NL + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:
    " + NL + + "
    JDK1.0
    " + NL + "
    See Also:
    " + NL + "
    " + "C2, " + NL + "" + "Serialized Form
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:
    " + NL + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:
    " + NL + "
    1.4
    " + NL + - "
    See Also:
    " + NL + "
    " + + "
    See Also:
    " + NL + "
    " + "" + "setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    "+ NL + "
    Parameters:
    " + NL + "
    title" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    "+ NL + "
    Parameters:
    " + NL + "
    title" + " - the title
    " + NL + "
    test - boolean value" + - "
    " + NL + "
    Throws:
    " + NL + + "
    " + NL + "
    Throws:
    " + NL + "
    java.lang.IllegalArgumentException - if the " + "owner's" + NL + " GraphicsConfiguration is not from a screen " + "device
    " + NL + "
    HeadlessException
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:
    " + NL + "
    undecorated" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:
    " + NL + "
    undecorated" + " - true if no decorations are" + NL + " to be enabled;" + NL + " false " + - "if decorations are to be enabled.
    " + NL + "
    Since:" + + "if decorations are to be enabled.
    " + NL + "
    Since:" + "
    " + NL + "
    1.4
    " + NL + - "
    See Also:
    " + NL + "
    " + + "
    See Also:
    " + NL + "
    " + "readObject()" + "
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Throws:
    " + NL + - "
    java.io.IOException
    " + NL + "
    See Also:" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Throws:
    " + NL + + "
    java.io.IOException
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C2.html", "
    " + NL + "
    Parameters:" + - "
    " + NL + "
    set - boolean
    " + NL + "
    " + + {BUG_ID + FS + "pkg1" + FS + "C2.html", "
    " + NL + "
    Parameters:" + + "
    " + NL + "
    set - boolean
    " + NL + "
    " + "Since:
    " + NL + "
    1.4
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "
    " + NL + "
    Throws:" + + {BUG_ID + FS + "serialized-form.html", "
    " + NL + "
    Throws:" + "
    " + NL + "
    " + - "java.io.IOException
    " + NL + "
    See Also:" + + "java.io.IOException
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean)." + NL + "
    This field indicates whether the C1 is " + - "undecorated.
    " + NL + " " + NL + "
    " + NL + "
    Since:
    " + NL + - "
    1.4
    " + NL + "
    See Also:" + + "undecorated." + NL + " " + NL + "
    " + NL + "
    Since:
    " + NL + + "
    1.4
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean)." + NL + "
    Reads the object stream.
    " + NL + - "
    " + NL + "
    Throws:" + + "
    " + NL + "
    Throws:" + "
    " + NL + "
    " + "IOException
    " + NL + "
    java.io.IOException
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + " " + NL + "
    The name for this class.
    "}}; @@ -122,55 +122,55 @@ // and deprecated information. private static final String[][] TEST_NODEPR = { {BUG_ID + FS + "pkg1" + FS + "package-summary.html", "
    " + NL + - "
    Since:
    " + NL + + "
    Since:
    " + NL + "
    JDK1.0
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:" + - "
    " + NL + "
    JDK1.0
    " + NL + "
    See Also:" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Since:" + + "
    " + NL + "
    JDK1.0
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "C2, " + NL + "" + "Serialized Form
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:" + "
    " + NL + "
    title - the title
    " + NL + "
    " + - "test - boolean value
    " + NL + "
    Throws:" + + "test - boolean value" + NL + "
    Throws:" + "
    " + NL + "
    java.lang.IllegalArgumentException" + " - if the owner's" + NL + " GraphicsConfiguration" + " is not from a screen device
    " + NL + "
    " + "HeadlessException
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Parameters:" + "
    " + NL + "
    undecorated - true" + " if no decorations are" + NL + " to be enabled;" + NL + " false if decorations are to be enabled." + - "
    " + NL + "
    Since:
    " + NL + "
    1.4
    " + NL + - "
    See Also:
    " + NL + "
    " + + "
    " + NL + "
    Since:
    " + NL + "
    1.4
    " + NL + + "
    See Also:
    " + NL + "
    " + "readObject()
    " + NL + "
    "}, - {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Throws:" + + {BUG_ID + FS + "pkg1" + FS + "C1.html", "
    " + NL + "
    Throws:" + "
    " + NL + "
    java.io.IOException
    " + NL + "
    " + - "See Also:
    " + NL + "
    " + + "See Also:
    " + NL + "
    " + "setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "
    " + NL + "
    Throws:" + + {BUG_ID + FS + "serialized-form.html", "
    " + NL + "
    Throws:" + "
    " + NL + "
    " + - "java.io.IOException
    " + NL + "
    See Also:" + + "java.io.IOException" + NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean)." + NL + "
    This field indicates whether the C1 is " + - "undecorated.
    " + NL + " " + NL + "
    " + NL + "
    Since:
    " + NL + - "
    1.4
    " + NL + "
    See Also:" + + "undecorated." + NL + " " + NL + "
    " + NL + "
    Since:
    " + NL + + "
    1.4
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean)." + NL + "
    Reads the object stream.
    " + NL + - "
    " + NL + "
    Throws:" + + "
    " + NL + "
    Throws:" + "
    " + NL + "
    " + "IOException
    " + NL + "
    java.io.IOException
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + " " + NL + "
    " + "The name for this class.
    "}}; @@ -186,12 +186,12 @@ "title=\"enum in pkg1\">C1.ModalExclusionType " + "APPLICATION_EXCLUDE" + NL + ""}, {BUG_ID + FS + "serialized-form.html", "
    boolean " +
    -                 "undecorated
    " + NL + "
    " + - "Deprecated. As of JDK version 1.5, replaced by" + NL + + "undecorated" + NL + "
    " + + "Deprecated. As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + ""}, - {BUG_ID + FS + "serialized-form.html", "" + - "Deprecated. As of JDK version" + + {BUG_ID + FS + "serialized-form.html", "" + + "Deprecated. As of JDK version" + " 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + ""}}; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testHtmlStrongTag/TestHtmlStrongTag.java --- a/test/com/sun/javadoc/testHtmlStrongTag/TestHtmlStrongTag.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testHtmlStrongTag/TestHtmlStrongTag.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -25,7 +25,7 @@ /* * @test - * @bug 6786028 + * @bug 6786028 8026567 * @summary This test verifys the use of HTML tag instead of by Javadoc std doclet. * @author Bhavesh Patel * @library ../lib/ @@ -38,7 +38,7 @@ private static final String BUG_ID = "6786028"; private static final String[][] TEST1 = { - {BUG_ID + FS + "pkg1" + FS + "C1.html", "See Also:"}}; + {BUG_ID + FS + "pkg1" + FS + "C1.html", "See Also:"}}; private static final String[][] NEGATED_TEST1 = { {BUG_ID + FS + "pkg1" + FS + "C1.html", "Method Summary"}, {BUG_ID + FS + "pkg1" + FS + "C1.html", ""}, diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testIndex/TestIndex.java --- a/test/com/sun/javadoc/testIndex/TestIndex.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testIndex/TestIndex.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4852280 4517115 4973608 4994589 + * @bug 4852280 4517115 4973608 4994589 8026567 * @summary Perform tests on index.html file. * Also test that index-all.html has the appropriate output. * Test for unnamed package in index. @@ -53,27 +53,27 @@ //Test index-all.html {BUG_ID + FS + "index-all.html", - "C" + + "C" + " - Class in pkg"}, {BUG_ID + FS + "index-all.html", "" + - "Interface - Interface in " + + "Interface - Interface in " + "pkg"}, {BUG_ID + FS + "index-all.html", "" + - "AnnotationType - Annotation Type in " + + "AnnotationType - Annotation Type in " + "pkg"}, {BUG_ID + FS + "index-all.html", "" + - "Coin - Enum in " + + "Coin - Enum in " + "pkg"}, {BUG_ID + FS + "index-all.html", "Class in <Unnamed>"}, {BUG_ID + FS + "index-all.html", - "
    " + NL + "
    " + + "
    " + NL + "
    " + "Java - Static variable in class pkg.C
    " + NL + "
     
    " + NL + - "
    JDK " + + "
    JDK " + "- Static variable in class pkg." + "C
    " + NL + "
     
    " + NL + "
    "}, }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testInterface/TestInterface.java --- a/test/com/sun/javadoc/testInterface/TestInterface.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testInterface/TestInterface.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4682448 4947464 5029946 8025633 + * @bug 4682448 4947464 5029946 8025633 8026567 * @summary Verify that the public modifier does not show up in the * documentation for public methods, as recommended by the JLS. * If A implements I and B extends A, B should be in the list of @@ -83,7 +83,7 @@ }, //Make sure "Specified By" has substituted type parameters. {BUG_ID + FS + "pkg" + FS + "Child.html", - "
    Specified by:
    " + NL + + "
    Specified by:
    " + NL + "
    method" + " in interface " + "" + @@ -92,7 +92,7 @@ }, //Make sure "Overrides" has substituted type parameters. {BUG_ID + FS + "pkg" + FS + "Child.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    method" + " in class Parent<See Also:
    " + NL + "
    getRate(), " + NL + + "
    See Also:
    " + NL + "
    getRate(), " + NL + "setRate(double)
    "}, {"./" + BUG_ID + "/C.html", "
    public final void setRate(double value)
    " + NL + "
    Sets the value of the property rate.
    " + NL + - "
    " + NL + "
    Property description:
    " }, + "
    " + NL + "
    Property description:
    " }, {"./" + BUG_ID + "/C.html", "
    public final double getRate()
    " + NL + "
    Gets the value of the property rate.
    " + NL + - "
    " + NL + "
    Property description:
    " }, + "
    " + NL + "
    Property description:
    " }, {"./" + BUG_ID + "/C.html", - "rate" + NL + + "rate" + NL + "
    Defines the direction/speed at which the Timeline is expected to"}, {"./" + BUG_ID + "/C.html", - "Default value:"}, + "Default value:"}, {"./" + BUG_ID + "/C.html", - "Since:
    " + NL + "
    JavaFX 8.0
    " }, + "Since:
    " + NL + "
    JavaFX 8.0
    " }, {"./" + BUG_ID + "/C.html", "

    Sets the value of the property Property"}, {"./" + BUG_ID + "/C.html", "

    Gets the value of the property Property"}, {"./" + BUG_ID + "/C.html", - "Property description:"}, + "Property description:"}, {"./" + BUG_ID + "/C.html", - "setTestMethodProperty() " }, + "setTestMethodProperty() " }, {"./" + BUG_ID + "/C.html", "

    isPaused

    " + NL + "
    public final double isPaused()
    " + NL + diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testLegacyTaglet/Check.java --- a/test/com/sun/javadoc/testLegacyTaglet/Check.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testLegacyTaglet/Check.java Fri Oct 18 16:34:42 2013 -0700 @@ -126,7 +126,7 @@ * @param tag the tag representation of this custom tag. */ public String toString(Tag tag) { - return "
    " + TAG_HEADER + ":
    " + tag.text() + + return "
    " + TAG_HEADER + ":
    " + tag.text() + "
    \n"; } diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testLinkOption/TestLinkOption.java --- a/test/com/sun/javadoc/testLinkOption/TestLinkOption.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testLinkOption/TestLinkOption.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4720957 5020118 + * @bug 4720957 5020118 8026567 * @summary Test to make sure that -link and -linkoffline link to * right files. * @author jamieh @@ -61,7 +61,7 @@ "Object p3)" }, {BUG_ID + "-1" + FS + "java" + FS + "lang" + FS + "StringBuilderChild.html", - "
    public abstract class StringBuilderChild" + NL +
    +                "
    public abstract class StringBuilderChild" + NL +
                     "extends Object
    " }, diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testMemberInheritence/TestMemberInheritence.java --- a/test/com/sun/javadoc/testMemberInheritence/TestMemberInheritence.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testMemberInheritence/TestMemberInheritence.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4638588 4635809 6256068 6270645 8025633 + * @bug 4638588 4635809 6256068 6270645 8025633 8026567 * @summary Test to make sure that members are inherited properly in the Javadoc. * Verify that inheritence labels are correct. * @author jamieh @@ -72,7 +72,7 @@ // Test overriding/implementing methods with generic parameters. {BUG_ID + FS + "pkg" + FS + "BaseClass.html", - "
    " + NL + "
    Specified by:
    " + NL + + "
    " + NL + "
    Specified by:
    " + NL + "
    " + "getAnnotation in interface " + "" + diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testMemberSummary/TestMemberSummary.java --- a/test/com/sun/javadoc/testMemberSummary/TestMemberSummary.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testMemberSummary/TestMemberSummary.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4951228 6290760 8025633 + * @bug 4951228 6290760 8025633 8026567 * @summary Test the case where the overriden method returns a different * type than the method in the child class. Make sure the * documentation is inherited but the return type isn't. @@ -49,7 +49,7 @@ // Check return type in member summary. {BUG_ID + FS + "pkg" + FS + "PublicChild.html", "PublicChild" + NL + - "" + + "" + "returnTypeTest()" }, // Check return type in member detail. diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testNavigation/TestNavigation.java --- a/test/com/sun/javadoc/testNavigation/TestNavigation.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testNavigation/TestNavigation.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4131628 4664607 7025314 8023700 7198273 8025633 + * @bug 4131628 4664607 7025314 8023700 7198273 8025633 8026567 * @summary Make sure the Next/Prev Class links iterate through all types. * Make sure the navagation is 2 columns, not 3. * @author jamieh @@ -46,17 +46,17 @@ private static final String[][] TEST = { {BUG_ID + FS + "pkg" + FS + "A.html", "
  • Prev Class
  • "}, {BUG_ID + FS + "pkg" + FS + "A.html", - "Next Class"}, + "Next Class"}, {BUG_ID + FS + "pkg" + FS + "C.html", - "Prev Class"}, + "Prev Class"}, {BUG_ID + FS + "pkg" + FS + "C.html", - "Next Class"}, + "Next Class"}, {BUG_ID + FS + "pkg" + FS + "E.html", - "Prev Class"}, + "Prev Class"}, {BUG_ID + FS + "pkg" + FS + "E.html", - "Next Class"}, + "Next Class"}, {BUG_ID + FS + "pkg" + FS + "I.html", - "Prev Class"}, + "Prev Class"}, {BUG_ID + FS + "pkg" + FS + "I.html", "
  • Next Class
  • "}, // Test for 4664607 {BUG_ID + FS + "pkg" + FS + "I.html", diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testNewLanguageFeatures/TestNewLanguageFeatures.java --- a/test/com/sun/javadoc/testNewLanguageFeatures/TestNewLanguageFeatures.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testNewLanguageFeatures/TestNewLanguageFeatures.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4789689 4905985 4927164 4827184 4993906 5004549 7025314 7010344 8025633 + * @bug 4789689 4905985 4927164 4827184 4993906 5004549 7025314 7010344 8025633 8026567 * @summary Run Javadoc on a set of source files that demonstrate new * language features. Check the output to ensure that the new * language features are properly documented. @@ -53,7 +53,7 @@ {BUG_ID + FS + "pkg" + FS + "Coin.html", "Enum Coin"}, //Make sure enum signature is correct. {BUG_ID + FS + "pkg" + FS + "Coin.html", "
    public enum " +
    -                     "Coin" + NL +
    +                     "Coin" + NL +
                          "extends java.lang.Enum<Coin>
    " }, @@ -62,7 +62,7 @@ " "}, //Detail for enum constant {BUG_ID + FS + "pkg" + FS + "Coin.html", - "Dime"}, + "Dime"}, //Automatically insert documentation for values() and valueOf(). {BUG_ID + FS + "pkg" + FS + "Coin.html", "Returns an array containing the constants of this enum type,"}, @@ -80,11 +80,11 @@ "Class TypeParameters<E>"}, //Check class type parameters section. {BUG_ID + FS + "pkg" + FS + "TypeParameters.html", - "
    Type Parameters:
    " + NL + "
    E - " + + "
    Type Parameters:
    " + NL + "
    E - " + "the type parameter for this class."}, //Type parameters in @see/@link {BUG_ID + FS + "pkg" + FS + "TypeParameters.html", - "
    " + NL + "
    See Also:
    " + NL + "
    " + + "
    " + NL + "
    See Also:
    " + NL + "
    " + "" + "TypeParameters
    " + NL + "
    "}, //Method that uses class type parameter. @@ -93,7 +93,7 @@ "parameter in TypeParameters\">E param)"}, //Method type parameter section. {BUG_ID + FS + "pkg" + FS + "TypeParameters.html", - "Type Parameters:
    " + NL + "
    T - This is the first " + + "Type Parameters:
    " + NL + "
    T - This is the first " + "type parameter.
    " + NL + "
    V - This is the second type " + "parameter."}, //Signature of method with type parameters @@ -118,7 +118,7 @@ //Signature of subclass that has type parameters. {BUG_ID + FS + "pkg" + FS + "TypeParameterSubClass.html", - "
    public class TypeParameterSubClass<T extends " +
    +                "
    public class TypeParameterSubClass<T extends " +
                     "java.lang.String>" + NL + "extends " +
                     "" +
                     "TypeParameterSuperClass<T>
    "}, @@ -168,7 +168,7 @@ "Annotation Type AnnotationType"}, //Make sure the signature is correct. {BUG_ID + FS + "pkg" + FS + "AnnotationType.html", - "public @interface AnnotationType"}, + "public @interface AnnotationType"}, //Make sure member summary headings are correct. {BUG_ID + FS + "pkg" + FS + "AnnotationType.html", "

    Required Element Summary

    "}, @@ -198,7 +198,7 @@ "optional" + "=\"Class Annotation\"," + NL + " " + - "required=1994)" + NL + "public class " + + "required=1994)" + NL + "public class " + "AnnotationTypeUsage" + NL + "extends java.lang.Object
    "}, //FIELD @@ -299,7 +299,7 @@ {BUG_ID + FS + "pkg1" + FS + "B.html", "
    @A"},
                 {BUG_ID + FS + "pkg1" + FS + "B.html",
    -                "public interface B
    "}, + "public interface B"}, //============================================================== @@ -320,7 +320,7 @@ "Foo " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", - "ClassUseTest1<T extends " + "Foo" + " & " + @@ -333,8 +333,8 @@ "pkg2\">Foo " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", - "ClassUseTest1." + - "ClassUseTest1." + + "method" + "(T t) " }, @@ -372,7 +372,7 @@ "" }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", - "ClassUseTest1<T extends " + "Foo" + " & " + @@ -386,8 +386,8 @@ "" }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", - "" + - "ClassUseTest1." + + "ClassUseTest1.method" + "(T t) " }, @@ -401,7 +401,7 @@ " " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", - "ClassUseTest2<T extends " + "" + "ParamTest<" + @@ -415,8 +415,8 @@ " " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", - "ClassUseTest2." + - "ClassUseTest2." + + "method" + "(T t) " }, @@ -456,7 +456,7 @@ "Foo3 " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", - "ClassUseTest2<T extends " + "" + "ParamTest<" + @@ -470,8 +470,8 @@ "" }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", - "ClassUseTest2." + - "ClassUseTest2." + + "method" + "(T t) " }, @@ -500,7 +500,7 @@ " " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", - "ClassUseTest3<T extends " + "" + "ParamTest2<java.util.List<? extends " + @@ -515,8 +515,8 @@ " " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", - "ClassUseTest3" + - ".ClassUseTest3" + + ".method(T t) " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", @@ -538,7 +538,7 @@ "" }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", - "ClassUseTest3<T extends " + "" + "ParamTest2<java.util.List<? extends " + @@ -552,8 +552,8 @@ "pkg2\">Foo4 " }, {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", - "ClassUseTest3." + - "ClassUseTest3." + + "method(T t)" + " " }, @@ -586,8 +586,8 @@ "Method and Description" + NL + "" + NL + "" + NL + "" + NL + "void" + NL + - "ClassUseTest3." + - "ClassUseTest3." + + "method(java." + "util.Set<Foo4> p) " + NL + @@ -663,14 +663,14 @@ // TYPE PARAMETER IN INDEX //================================= {BUG_ID + FS + "index-all.html", - "" + + "" + "method(Vector<Object>)" }, //================================= // TYPE PARAMETER IN INDEX //================================= {BUG_ID + FS + "index-all.html", - "" + + "" + "method(Vector<Object>)" }, }; @@ -679,7 +679,7 @@ // ENUM TESTING //================================= //NO constructor section - {BUG_ID + FS + "pkg" + FS + "Coin.html", "Constructor Summary"}, + {BUG_ID + FS + "pkg" + FS + "Coin.html", "

    Constructor Summary

    "}, //================================= // TYPE PARAMETER TESTING //================================= @@ -698,25 +698,25 @@ {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", "@AnnotationTypeUndocumented(optional=\"Class Annotation\"," + NL + " required=1994)" + NL + - "public class AnnotationTypeUsage
    extends java.lang.Object
    "}, + "public class AnnotationTypeUsage
    extends java.lang.Object
    "}, //FIELD {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", "@AnnotationTypeUndocumented(optional=\"Field Annotation\"," + NL + " required=1994)" + NL + - "public int field"}, + "public int field"}, //CONSTRUCTOR {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", "@AnnotationTypeUndocumented(optional=\"Constructor Annotation\"," + NL + " required=1994)" + NL + - "public AnnotationTypeUsage()"}, + "public AnnotationTypeUsage()"}, //METHOD {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", "@AnnotationTypeUndocumented(optional=\"Method Annotation\"," + NL + " required=1994)" + NL + - "public void method()"}, + "public void method()"}, //================================= // Make sure annotation types do not diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testOverridenMethods/TestOverridenMethodDocCopy.java --- a/test/com/sun/javadoc/testOverridenMethods/TestOverridenMethodDocCopy.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testOverridenMethods/TestOverridenMethodDocCopy.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4368820 8025633 + * @bug 4368820 8025633 8026567 * @summary Inherited comment should link directly to member, not just * class * @author jamieh @@ -46,7 +46,7 @@ //Input for string search tests. private static final String[][] TEST = { {BUG_ID + FS + "pkg1" + FS + "SubClass.html", - "Description copied from class: " + + "Description copied from class: " + "" + "BaseClass" } diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethods.java --- a/test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethods.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethods.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4634891 + * @bug 4634891 8026567 * @summary Determine if overriden methods are properly documented when * -protected (default) visibility flag is used. * @author jamieh @@ -40,12 +40,12 @@ private static final String[][] TEST = { //The public method should be overriden {BUG_ID + FS + "pkg1" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    " + "publicMethod in class " + "BaseClass
    "}, //The public method in different package should be overriden {BUG_ID + FS + "pkg2" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    " + "publicMethod in class " + "BaseClass
    "}, @@ -55,7 +55,7 @@ //The package private method should be overriden since the base and sub class are in the same //package. {BUG_ID + FS + "pkg1" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    " + "packagePrivateMethod in class " + "BaseClass
    "} @@ -65,18 +65,18 @@ //The private method in should not be overriden {BUG_ID + FS + "pkg1" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    "}, //The private method in different package should not be overriden {BUG_ID + FS + "pkg2" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    "}, //The package private method should not be overriden since the base and sub class are in //different packages. {BUG_ID + FS + "pkg2" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    "}, }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethodsWithPrivateFlag.java --- a/test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethodsWithPrivateFlag.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethodsWithPrivateFlag.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4634891 + * @bug 4634891 8026567 * @summary Determine if overriden methods are properly documented when * -protected (default) visibility flag is used. * @author jamieh @@ -40,18 +40,18 @@ private static final String[][] TEST = { //The public method should be overriden {BUG_ID + FS + "pkg1" + FS + "SubClass.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Overrides:" + NL + + "
    Overrides:
    " + NL + "
    Deprecated." + NL + - "
    This package is Deprecated." + + "
    Deprecated." + NL + + "
    This package is Deprecated." + "
    " }, {BUG_ID + "-1" + FS + "deprecated-list.html", diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testParamTaglet/TestParamTaglet.java --- a/test/com/sun/javadoc/testParamTaglet/TestParamTaglet.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testParamTaglet/TestParamTaglet.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4802275 4967243 + * @bug 4802275 4967243 8026567 * @summary Make sure param tags are still printed even though they do not * match up with a real parameters. * Make sure inheritDoc cannot be used in an invalid param tag. @@ -48,12 +48,12 @@ private static final String[][] TEST = { //Regular param tags. {BUG_ID + FS + "pkg" + FS + "C.html", - "Parameters:" + NL + "
    param1 - testing 1 2 3.
    " + + "Parameters:" + NL + "
    param1 - testing 1 2 3.
    " + NL + "
    param2 - testing 1 2 3." }, //Param tags that don't match with any real parameters. {BUG_ID + FS + "pkg" + FS + "C.html", - "Parameters:" + NL + "
    p1 - testing 1 2 3.
    " + + "Parameters:" + NL + "
    p1 - testing 1 2 3.
    " + NL + "
    p2 - testing 1 2 3." }, //{@inherit} doc misuse does not cause doclet to throw exception. diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testPrivateClasses/TestPrivateClasses.java --- a/test/com/sun/javadoc/testPrivateClasses/TestPrivateClasses.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testPrivateClasses/TestPrivateClasses.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 4780441 4874845 4978816 8014017 8016328 8025633 + * @bug 4780441 4874845 4978816 8014017 8016328 8025633 8026567 * @summary Make sure that when the -private flag is not used, members * inherited from package private class are documented in the child. * @@ -112,12 +112,12 @@ private static final String[][] NEGATED_TEST1 = { // Should not document that a method overrides method from private class. {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html", - "Overrides:"}, + "Overrides:"}, // Should not document that a method specified by private interface. {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html", - "Specified by:"}, + "Specified by:"}, {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html", - "Specified by:"}, + "Specified by:"}, // Should not mention that any documentation was copied. {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html", "Description copied from"}, @@ -139,7 +139,7 @@ //Do not inherit private interface method with generic parameters. //This method has been implemented. {BUG_ID + "-1" + FS + "pkg2" + FS + "C.html", - "hello"}, + "hello"}, }; // Test output when -private flag is used. @@ -176,14 +176,14 @@ }, // Should document that a method overrides method from private class. {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html", - "
    Overrides:
    " + NL + + "
    Overrides:
    " + NL + "
    " + "methodOverridenFromParent in class " + "" + "PrivateParent
    "}, // Should document that a method is specified by private interface. {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html", - "
    Specified by:
    " + NL + + "
    Specified by:
    " + NL + "
    " + "methodInterface in interface " + "" + @@ -227,11 +227,11 @@ //Since private flag is used, we can document that private interface method //with generic parameters has been implemented. {BUG_ID + "-2" + FS + "pkg2" + FS + "C.html", - "Description copied from interface: " + + "Description copied from interface: " + "I"}, {BUG_ID + "-2" + FS + "pkg2" + FS + "C.html", - "
    Specified by:
    " + NL + + "
    Specified by:
    " + NL + "
    hello" + " in interface " + "I" + @@ -240,14 +240,14 @@ //Make sure when no modifier appear in the class signature, the //signature is displayed correctly without extra space at the beginning. {BUG_ID + "-2" + FS + "pkg" + FS + "PrivateParent.html", - "
    class PrivateParent"},
    +            "
    class PrivateParent"},
     
           {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
    -            "
    public class PublicChild"},
    +            "
    public class PublicChild"},
         };
         private static final String[][] NEGATED_TEST2 = {
             {BUG_ID + "-2" + FS + "pkg" + FS + "PrivateParent.html",
    -            "
     class PrivateParent"},
    +            "
     class PrivateParent"},
         };
     
         /**
    diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testProfiles/TestProfiles.java
    --- a/test/com/sun/javadoc/testProfiles/TestProfiles.java	Fri Oct 18 15:03:34 2013 -0700
    +++ b/test/com/sun/javadoc/testProfiles/TestProfiles.java	Fri Oct 18 16:34:42 2013 -0700
    @@ -23,7 +23,7 @@
     
     /*
      * @test
    - * @bug      8006124 8009684 8016921 8023700 8024096 8008164
    + * @bug      8006124 8009684 8016921 8023700 8024096 8008164 8026567
      * @summary  Test javadoc support for profiles.
      * @author   Bhavesh Patel, Evgeniya Stepanova
      * @library  ../lib/
    @@ -122,17 +122,17 @@
             },
             {PROFILE_BUG_ID + FS + "deprecated-list.html",""
                 + "pkg2.Class1Pkg2"
    -            + NL +"
    Class1Pkg2. This class is deprecated
    " + + NL +"
    Class1Pkg2. This class is deprecated
    " }, //Test deprecated package in profile {PROFILE_BUG_ID + FS + "deprecated-list.html","" + "pkgDeprecated" - + NL +"
    This package is Deprecated." + + NL +"
    This package is Deprecated." + " Use pkg1.
    " }, {PROFILE_BUG_ID + FS + "pkgDeprecated" + FS + "package-summary.html", - "
    Deprecated." - + NL + "
    This package is Deprecated." + "
    Deprecated." + + NL + "
    This package is Deprecated." + " Use pkg1.
    " }, // need to add teststring when JDK-8015496 will be fixed diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testProfiles/TestProfilesConfiguration.java --- a/test/com/sun/javadoc/testProfiles/TestProfilesConfiguration.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testProfiles/TestProfilesConfiguration.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 8006124 8009684 8015663 8015496 + * @bug 8006124 8009684 8015663 8015496 8026567 * @summary Test javadoc options support for profiles. * @author Evgeniya Stepanova * @library ../lib/ @@ -87,7 +87,7 @@ {PROFILE_CONFIGURATION_BUG_ID + FS + "compact1-summary.html", "

    pkgDeprecated

    " + NL + "
    " + - "Deprecated.
    " + "Deprecated.
    " } }; private static final String[][] PROFILES_CONFIGURATION_NEGATED_TEST = { diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testSerializedFormDeprecationInfo/TestSerializedFormDeprecationInfo.java --- a/test/com/sun/javadoc/testSerializedFormDeprecationInfo/TestSerializedFormDeprecationInfo.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testSerializedFormDeprecationInfo/TestSerializedFormDeprecationInfo.java Fri Oct 18 16:34:42 2013 -0700 @@ -25,7 +25,7 @@ /* * @test - * @bug 6802694 8025633 + * @bug 6802694 8025633 8026567 * @summary This test verifies deprecation info in serialized-form.html. * @author Bhavesh Patel * @library ../lib/ @@ -42,29 +42,29 @@ // display the inline comments, tags and deprecation information if any. private static final String[][] TEST_CMNT_DEPR = { {BUG_ID + FS + "serialized-form.html", "
    " + NL + - "
    Throws:
    " + NL + "
    " + - "java.io.IOException
    "+ NL + "
    See Also:" + + "
    Throws:
    " + NL + "
    " + + "java.io.IOException
    "+ NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + "
    This field indicates whether the C1 " + "is undecorated.
    " + NL + " " + NL + - "
    " + NL + "
    Since:
    " + NL + - "
    1.4
    " + NL + "
    See Also:" + + "
    " + NL + "
    Since:
    " + NL + + "
    1.4
    " + NL + "
    See Also:" + "
    " + NL + "
    " + "C1.setUndecorated(boolean)
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + - " As of JDK version 1.5, replaced by" + NL + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + + " As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + "
    Reads the object stream.
    " + NL + - "
    " + NL + "
    Throws:
    " + NL + "
    " + + "
    " + NL + "
    Throws:
    " + NL + "
    " + "IOException
    " + NL + "
    java.io.IOException
    " + NL + "
    "}, - {BUG_ID + FS + "serialized-form.html", "Deprecated." + + {BUG_ID + FS + "serialized-form.html", "Deprecated." + " 
    " + NL + "
    " + "The name for this class.
    "}}; @@ -73,12 +73,12 @@ // information if any. private static final String[][] TEST_NOCMNT = { {BUG_ID + FS + "serialized-form.html", "
    boolean undecorated
    " + NL + - "
    Deprecated. " + + "
    Deprecated. " + "As of JDK version 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + ""}, - {BUG_ID + FS + "serialized-form.html", "" + - "Deprecated. As of JDK version" + + {BUG_ID + FS + "serialized-form.html", "" + + "Deprecated. As of JDK version" + " 1.5, replaced by" + NL + " " + "setUndecorated(boolean).
    " + NL + ""}}; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testSimpleTag/TestSimpleTag.java --- a/test/com/sun/javadoc/testSimpleTag/TestSimpleTag.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testSimpleTag/TestSimpleTag.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 4695326 4750173 4920381 + * @bug 4695326 4750173 4920381 8026567 * @summary Test the declarartion of simple tags using -tag. Verify that * "-tag name" is a shortcut for "-tag name:a:Name:". Also verity that * you can escape the ":" character with a back slash so that it is not @@ -42,13 +42,13 @@ private static final String[][] TEST = new String[][] { {"./" + BUG_ID + "/C.html", - "Todo:"}, + "Todo:"}, {"./" + BUG_ID + "/C.html", - "EJB Beans:"}, + "EJB Beans:"}, {"./" + BUG_ID + "/C.html", - "Regular Tag:"}, + "Regular Tag:"}, {"./" + BUG_ID + "/C.html", - "Back-Slash-Tag:"}, + "Back-Slash-Tag:"}, }; private static final String[] ARGS = new String[] { diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testSimpleTagInherit/TestSimpleTagInherit.java --- a/test/com/sun/javadoc/testSimpleTagInherit/TestSimpleTagInherit.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testSimpleTagInherit/TestSimpleTagInherit.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 8008768 + * @bug 8008768 8026567 * @summary Using {@inheritDoc} in simple tag defined via -tag fails * @library ../lib/ * @build JavadocTester TestSimpleTagInherit @@ -46,10 +46,10 @@ //Input for string search tests. private static final String[][] TEST = { { BUG_ID + FS + "p" + FS + "TestClass.html", - "
    Custom:
    " + NL + + "
    Custom:
    " + NL + "
    doc for BaseClass class
    " }, { BUG_ID + FS + "p" + FS + "TestClass.html", - "
    Custom:
    " + NL + + "
    Custom:
    " + NL + "
    doc for BaseClass method
    " } }; private static final String[][] NEGATED_TEST = NO_TEST; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testSinceTag/TestSinceTag.java --- a/test/com/sun/javadoc/testSinceTag/TestSinceTag.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testSinceTag/TestSinceTag.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 7180906 + * @bug 7180906 8026567 * @summary Test to make sure that the since tag works correctly * @author Bhavesh Patel * @library ../lib/ @@ -48,11 +48,11 @@ //Input for string search tests. private static final String[][] TEST = { {BUG_ID + FS + "pkg1" + FS + "C1.html", - "
    " + NL + "
    Since:
    " + NL + + "
    " + NL + "
    Since:
    " + NL + "
    JDK1.0
    " }, {BUG_ID + FS + "serialized-form.html", - "
    " + NL + "
    Since:
    " + NL + + "
    " + NL + "
    Since:
    " + NL + "
    1.4
    " } }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testTagOutput/TestTagOutput.java --- a/test/com/sun/javadoc/testTagOutput/TestTagOutput.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testTagOutput/TestTagOutput.java Fri Oct 18 16:34:42 2013 -0700 @@ -25,7 +25,7 @@ /* * @test - * @bug 8026370 + * @bug 8026370 8026567 * @summary This test checks the generated tag output. * @author Bhavesh Patel * @library ../lib/ @@ -38,15 +38,15 @@ private static final String BUG_ID = "8026370"; private static final String[][] TEST = { {BUG_ID + FS + "pkg1" + FS + "DeprecatedTag.html", - "
    Deprecated. 
    "}, + "
    Deprecated. 
    "}, {BUG_ID + FS + "pkg1" + FS + "DeprecatedTag.html", - "
    Deprecated. " + - "Do not use this.
    "}}; + "
    Deprecated. " + + "Do not use this.
    "}}; private static final String[][] NEGATED_TEST = { {BUG_ID + FS + "pkg1" + FS + "DeprecatedTag.html", - "
    Deprecated." + - " 
    "}}; + "
    Deprecated." + + " 
    "}}; private static final String[] ARGS = new String[] { diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testTaglets/TestTaglets.java --- a/test/com/sun/javadoc/testTaglets/TestTaglets.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testTaglets/TestTaglets.java Fri Oct 18 16:34:42 2013 -0700 @@ -55,7 +55,7 @@ //Input for string search tests. private static final String[][] TEST_4654308 = new String[][] { - {"4654308" + FS + "C.html", "Foo:" + + {"4654308" + FS + "C.html", "Foo:" + "
    my only method is here" + "
    "} }; diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testTaglets/taglets/Foo.java --- a/test/com/sun/javadoc/testTaglets/taglets/Foo.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testTaglets/taglets/Foo.java Fri Oct 18 16:34:42 2013 -0700 @@ -50,7 +50,7 @@ */ public Content getTagletOutput(Tag tag, TagletWriter writer) { ArrayList inlineTags = new ArrayList(); - inlineTags.add(new TextTag(tag.holder(), "
    Foo:
    ")); + inlineTags.add(new TextTag(tag.holder(), "
    Foo:
    ")); inlineTags.addAll(Arrays.asList(tag.inlineTags())); inlineTags.add(new TextTag(tag.holder(), "
    ")); return writer.commentTagsToOutput(tag, diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java --- a/test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java Fri Oct 18 16:34:42 2013 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /** * @test - * @bug 4530727 + * @bug 4530727 8026567 * @summary When an exception is declared in the method signature but * not documented with a throws tag, we generate a link to it in the * throws section. Make sure that the link is below a Throws heading. @@ -38,7 +38,7 @@ private static final String BUG_ID = "4530727"; private static final String[][] TEST = { - {BUG_ID + FS + "C.html", "
    Throws:"} + {BUG_ID + FS + "C.html", "
    Throws:"} }; private static final String[][] NEGATED_TEST = NO_TEST; private static final String[] ARGS = new String[] { diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testTypeAnnotations/TestTypeAnnotations.java --- a/test/com/sun/javadoc/testTypeAnnotations/TestTypeAnnotations.java Fri Oct 18 15:03:34 2013 -0700 +++ b/test/com/sun/javadoc/testTypeAnnotations/TestTypeAnnotations.java Fri Oct 18 16:34:42 2013 -0700 @@ -23,7 +23,7 @@ /* * @test - * @bug 8005091 8009686 8025633 + * @bug 8005091 8009686 8025633 8026567 * @summary Make sure that type annotations are displayed correctly * @author Bhavesh Patel * @library ../lib/ @@ -74,12 +74,12 @@ // Test for type annotations on Class Parameters (ClassParameters.java). {BUG_ID + FS + "typeannos" + FS + "ExtendsBound.html", - "class ExtendsBound<K extends ExtendsBound<K extends @ClassParamA java.lang.String>" }, {BUG_ID + FS + "typeannos" + FS + "ExtendsGeneric.html", - "
    class ExtendsGeneric<K extends " +
    +            "
    class ExtendsGeneric<K extends " +
                 "@ClassParamA Unannotated< java.lang.String>>"
             },
             {BUG_ID + FS + "typeannos" + FS + "TwoBounds.html",
    -            "
    class TwoBounds<K extends class TwoBounds<K extends " +
                 "@ClassParamA java.lang.String,V extends @ClassParamB" +
                 " java.lang.String>"
             },
             {BUG_ID + FS + "typeannos" + FS + "Complex1.html",
    -            "class Complex1<K extends Complex1<K extends " +
                 "@ClassParamA java.lang.String & java.lang.Runnable>"
             },
             {BUG_ID + FS + "typeannos" + FS + "Complex2.html",
    -            "class Complex2<K extends java.lang." +
    +            "class Complex2<K extends java.lang." +
                 "String & @ClassParamB java.lang.Runnable>"
             },
             {BUG_ID + FS + "typeannos" + FS + "ComplexBoth.html",
    -            "class ComplexBoth<K extends ComplexBoth<K extends @ClassParamA java.lang.String & @ClassParamA" +
    diff -r 7de97abc4a5c -r 130b8c0e570e test/com/sun/javadoc/testValueTag/TestValueTag.java
    --- a/test/com/sun/javadoc/testValueTag/TestValueTag.java	Fri Oct 18 15:03:34 2013 -0700
    +++ b/test/com/sun/javadoc/testValueTag/TestValueTag.java	Fri Oct 18 16:34:42 2013 -0700
    @@ -23,7 +23,7 @@
     
     /*
      * @test
    - * @bug      4764045 8004825
    + * @bug      4764045 8004825 8026567
      * @summary  This test ensures that the value tag works in all
      * use cases. The explainations for each test case are written below.
      * @author   jamieh
    @@ -94,7 +94,7 @@
                 "Result: \"Test 17 passes\""},
             //Test @value tag used with custom tag.
             {BUG_ID + FS + "pkg1" + FS + "CustomTagUsage.html",
    -            "
    Todo:
    " + NL + + "
    Todo:
    " + NL + "
    the value of this constant is 55.
    "}, //Test @value errors printed dues to invalid use or when used with //non-constant or with bad references.