langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/ClassTree.java
author bpatel
Mon, 02 May 2011 02:13:02 -0700
changeset 9606 e5a619cb5dd3
parent 5520 86e4b9a9da40
child 14258 8d2148961366
permissions -rw-r--r--
6492694: @deprecated tag doesn't work in package-info files. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
     2
 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1789
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit.util;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.tools.doclets.internal.toolkit.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * Build Class Hierarchy for all the Classes. This class builds the Class
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * Tree and the Interface Tree separately.
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * This code is not part of an API.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * It is implementation that is subject to change.
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Do not use it as an API
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * @see java.util.HashMap
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * @see java.util.List
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * @see com.sun.javadoc.Type
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 * @see com.sun.javadoc.ClassDoc
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * @author Atul M Dambalkar
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
public class ClassTree {
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
     * List of baseclasses. Contains only java.lang.Object. Can be used to get
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
     * the mapped listing of sub-classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    52
    private List<ClassDoc> baseclasses = new ArrayList<ClassDoc>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    * Mapping for each Class with their SubClasses
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    57
    private Map<ClassDoc,List<ClassDoc>> subclasses = new HashMap<ClassDoc,List<ClassDoc>>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * List of base-interfaces. Contains list of all the interfaces who do not
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     * have super-interfaces. Can be used to get the mapped listing of
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     * sub-interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    64
    private List<ClassDoc> baseinterfaces = new ArrayList<ClassDoc>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    * Mapping for each Interface with their SubInterfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    69
    private Map<ClassDoc,List<ClassDoc>> subinterfaces = new HashMap<ClassDoc,List<ClassDoc>>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    71
    private List<ClassDoc> baseEnums = new ArrayList<ClassDoc>();
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    72
    private Map<ClassDoc,List<ClassDoc>> subEnums = new HashMap<ClassDoc,List<ClassDoc>>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    74
    private List<ClassDoc> baseAnnotationTypes = new ArrayList<ClassDoc>();
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    75
    private Map<ClassDoc,List<ClassDoc>> subAnnotationTypes = new HashMap<ClassDoc,List<ClassDoc>>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    * Mapping for each Interface with classes who implement it.
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    80
    private Map<ClassDoc,List<ClassDoc>> implementingclasses = new HashMap<ClassDoc,List<ClassDoc>>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * Constructor. Build the Tree using the Root of this Javadoc run.
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * @param configuration the configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * @param noDeprecated Don't add deprecated classes in the class tree, if
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * true.
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    public ClassTree(Configuration configuration, boolean noDeprecated) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        configuration.message.notice("doclet.Building_Tree");
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        buildTree(configuration.root.classes(), configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * Constructor. Build the Tree using the Root of this Javadoc run.
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     * @param root Root of the Document.
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * @param configuration The curren configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    public ClassTree(RootDoc root, Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        buildTree(root.classes(), configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * Constructor. Build the tree for the given array of classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * @param classes Array of classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     * @param configuration The curren configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    public ClassTree(ClassDoc[] classes, Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        buildTree(classes, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * Generate mapping for the sub-classes for every class in this run.
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     * Return the sub-class list for java.lang.Object which will be having
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     * sub-class listing for itself and also for each sub-class itself will
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
     * have their own sub-class lists.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     * @param classes all the classes in this run.
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * @param configuration the current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    private void buildTree(ClassDoc[] classes, Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        for (int i = 0; i < classes.length; i++) {
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   125
            // In the tree page (e.g overview-tree.html) do not include
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   126
            // information of classes which are deprecated or are a part of a
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   127
            // deprecated package.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            if (configuration.nodeprecated &&
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   129
                    (Util.isDeprecated(classes[i]) ||
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   130
                    Util.isDeprecated(classes[i].containingPackage()))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            if (classes[i].isEnum()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
                processType(classes[i], configuration, baseEnums, subEnums);
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            } else if (classes[i].isClass()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
                processType(classes[i], configuration, baseclasses, subclasses);
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            } else if (classes[i].isInterface()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
                processInterface(classes[i]);
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   139
                List<ClassDoc> list = implementingclasses.get(classes[i]);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
                if (list != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
                    Collections.sort(list);
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            } else if (classes[i].isAnnotationType()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
                processType(classes[i], configuration, baseAnnotationTypes,
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
                    subAnnotationTypes);
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
        Collections.sort(baseinterfaces);
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   150
        for (Iterator<List<ClassDoc>> it = subinterfaces.values().iterator(); it.hasNext(); ) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   151
            Collections.sort(it.next());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   153
        for (Iterator<List<ClassDoc>> it = subclasses.values().iterator(); it.hasNext(); ) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   154
            Collections.sort(it.next());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     * For the class passed map it to it's own sub-class listing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
     * For the Class passed, get the super class,
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     * if superclass is non null, (it is not "java.lang.Object")
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     *    get the "value" from the hashmap for this key Class
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     *    if entry not found create one and get that.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     *    add this Class as a sub class in the list
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     *    Recurse till hits java.lang.Object Null SuperClass.
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
     * @param cd class for which sub-class mapping to be generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     * @param configuration the current configurtation of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    private void processType(ClassDoc cd, Configuration configuration,
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   171
            List<ClassDoc> bases, Map<ClassDoc,List<ClassDoc>> subs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
        ClassDoc superclass = Util.getFirstVisibleSuperClassCD(cd, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        if (superclass != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            if (!add(subs, superclass, cd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
                return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
                processType(superclass, configuration, bases, subs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        } else {     // cd is java.lang.Object, add it once to the list
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
            if (!bases.contains(cd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
                bases.add(cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        }
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   184
        List<Type> intfacs = Util.getAllInterfaces(cd, configuration);
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   185
        for (Iterator<Type> iter = intfacs.iterator(); iter.hasNext();) {
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   186
            add(implementingclasses, iter.next().asClassDoc(), cd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     * For the interface passed get the interfaces which it extends, and then
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     * put this interface in the sub-interface list of those interfaces. Do it
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * recursively. If a interface doesn't have super-interface just attach
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     * that interface in the list of all the baseinterfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
     * @param cd Interface under consideration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    private void processInterface(ClassDoc cd) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        ClassDoc[] intfacs = cd.interfaces();
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
        if (intfacs.length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            for (int i = 0; i < intfacs.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
                if (!add(subinterfaces, intfacs[i], cd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
                    return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
                    processInterface(intfacs[i]);   // Recurse
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            // we need to add all the interfaces who do not have
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            // super-interfaces to baseinterfaces list to traverse them
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
            if (!baseinterfaces.contains(cd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
                baseinterfaces.add(cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     * Adjust the Class Tree. Add the class interface  in to it's super-class'
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     * or super-interface's sub-interface list.
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     * @param map the entire map.
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     * @param superclass java.lang.Object or the super-interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     * @param cd sub-interface to be mapped.
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     * @returns boolean true if class added, false if class already processed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   226
    private boolean add(Map<ClassDoc,List<ClassDoc>> map, ClassDoc superclass, ClassDoc cd) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   227
        List<ClassDoc> list = map.get(superclass);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        if (list == null) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   229
            list = new ArrayList<ClassDoc>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            map.put(superclass, list);
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        if (list.contains(cd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            list.add(cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     * From the map return the list of sub-classes or sub-interfaces. If list
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
     * is null create a new one and return it.
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     * @param map The entire map.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     * @param cd class for which the sub-class list is requested.
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     * @returns List Sub-Class list for the class passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   248
    private List<ClassDoc> get(Map<ClassDoc,List<ClassDoc>> map, ClassDoc cd) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   249
        List<ClassDoc> list = map.get(cd);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
        if (list == null) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   251
            return new ArrayList<ClassDoc>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
        return list;
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     *  Return the sub-class list for the class passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * @param cd class whose sub-class list is required.
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   261
    public List<ClassDoc> subclasses(ClassDoc cd) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        return get(subclasses, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     *  Return the sub-interface list for the interface passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     * @param cd interface whose sub-interface list is required.
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   270
    public List<ClassDoc> subinterfaces(ClassDoc cd) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        return get(subinterfaces, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     *  Return the list of classes which implement the interface passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
     * @param cd interface whose implementing-classes list is required.
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   279
    public List<ClassDoc> implementingclasses(ClassDoc cd) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   280
        List<ClassDoc> result = get(implementingclasses, cd);
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   281
        List<ClassDoc> subinterfaces = allSubs(cd, false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
        //If class x implements a subinterface of cd, then it follows
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
        //that class x implements cd.
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   285
        Iterator<ClassDoc> implementingClassesIter, subInterfacesIter = subinterfaces.listIterator();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
        ClassDoc c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
        while(subInterfacesIter.hasNext()){
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   288
            implementingClassesIter = implementingclasses(
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                    subInterfacesIter.next()).listIterator();
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
            while(implementingClassesIter.hasNext()){
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   291
                c = implementingClassesIter.next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                if(! result.contains(c)){
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
                    result.add(c);
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        Collections.sort(result);
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
        return result;
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
     *  Return the sub-class/interface list for the class/interface passed.
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
     * @param cd class/interface whose sub-class/interface list is required.
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
     * @param isEnum true if the subclasses should be forced to come from the
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
     * enum tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   308
    public List<ClassDoc> subs(ClassDoc cd, boolean isEnum) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
        if (isEnum) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            return get(subEnums, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
        } else if (cd.isAnnotationType()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
            return get(subAnnotationTypes, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        } else if (cd.isInterface()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            return get(subinterfaces, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
        } else if (cd.isClass()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
            return get(subclasses, cd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
     * Return a list of all direct or indirect, sub-classes and subinterfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
     * of the ClassDoc argument.
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
     * @param cd ClassDoc whose sub-classes or sub-interfaces are requested.
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
     * @param isEnum true if the subclasses should be forced to come from the
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
     * enum tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   331
    public List<ClassDoc> allSubs(ClassDoc cd, boolean isEnum) {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   332
        List<ClassDoc> list = subs(cd, isEnum);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        for (int i = 0; i < list.size(); i++) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   334
            cd = list.get(i);
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   335
            List<ClassDoc> tlist = subs(cd, isEnum);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
            for (int j = 0; j < tlist.size(); j++) {
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   337
                ClassDoc tcd = tlist.get(j);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
                if (!list.contains(tcd)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
                    list.add(tcd);
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        Collections.sort(list);
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
        return list;
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
     *  Return the base-classes list. This will have only one element namely
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
     *  thw classdoc for java.lang.Object, since this is the base class for all
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     *  classes.
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   352
    public List<ClassDoc> baseclasses() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
        return baseclasses;
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
     *  Return the list of base interfaces. This is the list of interfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
     *  which do not have super-interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   360
    public List<ClassDoc> baseinterfaces() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
        return baseinterfaces;
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
     *  Return the list of base enums. This is the list of enums
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
     *  which do not have super-enums.
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   368
    public List<ClassDoc> baseEnums() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        return baseEnums;
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
     *  Return the list of base annotation types. This is the list of
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
     *  annotation types which do not have super-annotation types.
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   376
    public List<ClassDoc> baseAnnotationTypes() {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
        return baseAnnotationTypes;
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
}