langtools/src/share/classes/com/sun/tools/doclets/formats/html/TreeWriter.java
changeset 14358 9eda9239cba0
parent 14357 faf9cde2817b
child 19667 fdfce85627a9
equal deleted inserted replaced
14357:faf9cde2817b 14358:9eda9239cba0
   144                         (configuration.nodeprecated && Util.isDeprecated(packages[i]))) {
   144                         (configuration.nodeprecated && Util.isDeprecated(packages[i]))) {
   145                     continue;
   145                     continue;
   146                 }
   146                 }
   147                 DocPath link = pathString(packages[i], DocPaths.PACKAGE_TREE);
   147                 DocPath link = pathString(packages[i], DocPaths.PACKAGE_TREE);
   148                 Content li = HtmlTree.LI(getHyperLink(
   148                 Content li = HtmlTree.LI(getHyperLink(
   149                         link, "", new StringContent(packages[i].name())));
   149                         link, new StringContent(packages[i].name())));
   150                 if (i < packages.length - 1) {
   150                 if (i < packages.length - 1) {
   151                     li.addContent(", ");
   151                     li.addContent(", ");
   152                 }
   152                 }
   153                 ul.addContent(li);
   153                 ul.addContent(li);
   154             }
   154             }