diff -r 4efd44aa85ff -r 47a62d8d98b4 src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java --- a/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java Fri Dec 05 21:59:59 2008 -0800 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java Thu Jan 08 16:26:59 2009 -0800 @@ -69,9 +69,9 @@ Tag[] deprs = doc.tags("deprecated"); if (doc instanceof ClassDoc) { if (Util.isDeprecated((ProgramElementDoc) doc)) { - output.append("" + + output.append("" + ConfigurationImpl.getInstance(). - getText("doclet.Deprecated") + " "); + getText("doclet.Deprecated") + " "); if (deprs.length > 0) { Tag[] commentTags = deprs[0].inlineTags(); if (commentTags.length > 0) { @@ -86,9 +86,9 @@ } else { MemberDoc member = (MemberDoc) doc; if (Util.isDeprecated((ProgramElementDoc) doc)) { - output.append("
" + + output.append("
" + ConfigurationImpl.getInstance(). - getText("doclet.Deprecated") + " "); + getText("doclet.Deprecated") + " "); if (deprs.length > 0) { output.append(""); output.append(commentTagsToOutput(null, doc, @@ -101,9 +101,9 @@ } } else { if (Util.isDeprecated(member.containingClass())) { - output.append("
" + + output.append("
" + ConfigurationImpl.getInstance(). - getText("doclet.Deprecated") + " "); + getText("doclet.Deprecated") + " "); } } } @@ -123,7 +123,7 @@ public TagletOutput getParamHeader(String header) { StringBuffer result = new StringBuffer(); result.append("
"); - result.append("" + header + ""); + result.append("" + header + ""); return new TagletOutputImpl(result.toString()); } @@ -141,8 +141,8 @@ */ public TagletOutput returnTagOutput(Tag returnTag) { TagletOutput result = new TagletOutputImpl(DocletConstants.NL + "
" + - "" + htmlWriter.configuration.getText("doclet.Returns") + - "" + "
" + + "" + htmlWriter.configuration.getText("doclet.Returns") + + "" + "
" + htmlWriter.commentTagsToString(returnTag, null, returnTag.inlineTags(), false)); return result; @@ -189,7 +189,7 @@ if (result != null && result.length() > 0) { return result + ", " + DocletConstants.NL; } else { - return "
" + htmlWriter.configuration().getText("doclet.See_Also") + "
"; + return "
" + htmlWriter.configuration().getText("doclet.See_Also") + "
"; } } @@ -197,7 +197,7 @@ * {@inheritDoc} */ public TagletOutput simpleTagOutput(Tag[] simpleTags, String header) { - String result = "
" + header + "
" + DocletConstants.NL + + String result = "
" + header + "
" + DocletConstants.NL + "
"; for (int i = 0; i < simpleTags.length; i++) { if (i > 0) { @@ -212,7 +212,7 @@ * {@inheritDoc} */ public TagletOutput simpleTagOutput(Tag simpleTag, String header) { - return new TagletOutputImpl("
" + header + "
" + "
" + return new TagletOutputImpl("
" + header + "
" + "
" + htmlWriter.commentTagsToString(simpleTag, null, simpleTag.inlineTags(), false) + "
" + DocletConstants.NL); } @@ -221,8 +221,8 @@ * {@inheritDoc} */ public TagletOutput getThrowsHeader() { - return new TagletOutputImpl(DocletConstants.NL + "
" + "" + - htmlWriter.configuration().getText("doclet.Throws") + ""); + return new TagletOutputImpl(DocletConstants.NL + "
" + "" + + htmlWriter.configuration().getText("doclet.Throws") + ""); } /**