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

changeset 182
47a62d8d98b4
parent 117
24a47c3062fe
child 184
905e151a185a
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/AbstractMemberWriter.java	Fri Dec 05 21:59:59 2008 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/AbstractMemberWriter.java	Thu Jan 08 16:26:59 2009 -0800
     1.3 @@ -98,8 +98,8 @@
     1.4          writer.displayLength++;
     1.5      }
     1.6  
     1.7 -    protected void bold(String str) {
     1.8 -        writer.bold(str);
     1.9 +    protected void strong(String str) {
    1.10 +        writer.strong(str);
    1.11          writer.displayLength += str.length();
    1.12      }
    1.13  
    1.14 @@ -321,7 +321,7 @@
    1.15          if (deprmembers.size() > 0) {
    1.16              writer.tableIndexSummary();
    1.17              writer.tableHeaderStart("#CCCCFF");
    1.18 -            writer.boldText(headingKey);
    1.19 +            writer.strongText(headingKey);
    1.20              writer.tableHeaderEnd();
    1.21              for (int i = 0; i < deprmembers.size(); i++) {
    1.22                  ProgramElementDoc member =(ProgramElementDoc)deprmembers.get(i);
    1.23 @@ -363,7 +363,7 @@
    1.24                  if (cd != null && !(pgmdoc instanceof ConstructorDoc)
    1.25                                 && !(pgmdoc instanceof ClassDoc)) {
    1.26                      // Add class context
    1.27 -                    writer.bold(cd.name() + ".");
    1.28 +                    writer.strong(cd.name() + ".");
    1.29                  }
    1.30                  writeSummaryLink(
    1.31                      pgmdoc instanceof ClassDoc ?

mercurial