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

changeset 1606
ccbe7ffdd867
parent 1410
bfec2a1cc869
child 1735
8ea30d59ac41
equal deleted inserted replaced
1605:94e67bed460d 1606:ccbe7ffdd867
1 /* 1 /*
2 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
159 * @param labelContent content tree of the label to be added 159 * @param labelContent content tree of the label to be added
160 * @param contentTree the content tree to which the class kind listing will be added 160 * @param contentTree the content tree to which the class kind listing will be added
161 */ 161 */
162 protected void addClassKindListing(ClassDoc[] arr, Content labelContent, 162 protected void addClassKindListing(ClassDoc[] arr, Content labelContent,
163 Content contentTree) { 163 Content contentTree) {
164 arr = Util.filterOutPrivateClasses(arr, configuration.javafx);
164 if(arr.length > 0) { 165 if(arr.length > 0) {
165 Arrays.sort(arr); 166 Arrays.sort(arr);
166 boolean printedHeader = false; 167 boolean printedHeader = false;
167 HtmlTree ul = new HtmlTree(HtmlTag.UL); 168 HtmlTree ul = new HtmlTree(HtmlTag.UL);
168 ul.addAttr(HtmlAttr.TITLE, labelContent.toString()); 169 ul.addAttr(HtmlAttr.TITLE, labelContent.toString());

mercurial