langtools/src/share/classes/com/sun/tools/doclets/formats/html/AllClassesFrameWriter.java
changeset 25454 376a52c9540c
parent 22159 682da512ec17
equal deleted inserted replaced
25453:be80cf0463b3 25454:376a52c9540c
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2014, 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
   151      */
   151      */
   152     protected void addContents(List<Doc> classlist, boolean wantFrames,
   152     protected void addContents(List<Doc> classlist, boolean wantFrames,
   153                                Content content) {
   153                                Content content) {
   154         for (Doc doc : classlist) {
   154         for (Doc doc : classlist) {
   155             ClassDoc cd = (ClassDoc) doc;
   155             ClassDoc cd = (ClassDoc) doc;
   156             if (!Util.isCoreClass(cd)) {
   156             if (!utils.isCoreClass(cd)) {
   157                 continue;
   157                 continue;
   158             }
   158             }
   159             Content label = italicsClassName(cd, false);
   159             Content label = italicsClassName(cd, false);
   160             Content linkContent;
   160             Content linkContent;
   161             if (wantFrames) {
   161             if (wantFrames) {