langtools/src/share/classes/com/sun/tools/javadoc/JavadocTool.java
author jjg
Tue, 09 Oct 2012 19:31:58 -0700
changeset 14259 fb94a1df0d53
parent 10950 e87b50888909
child 14260 727a84636f12
permissions -rw-r--r--
8000208: fix langtools javadoc comment issues Reviewed-by: bpatel, mcimadamore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 10950
diff changeset
     2
 * Copyright (c) 2001, 2012, 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: 2212
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: 2212
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: 2212
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
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.javadoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    28
import java.io.File;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    29
import java.io.IOException;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import java.util.Collection;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    31
import java.util.EnumSet;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    32
import java.util.HashMap;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    33
import java.util.Map;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    34
import java.util.Set;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    35
import javax.tools.JavaFileManager.Location;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    36
import javax.tools.JavaFileObject;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    37
import javax.tools.StandardJavaFileManager;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    38
import javax.tools.StandardLocation;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    40
import com.sun.tools.javac.code.Symbol.CompletionFailure;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    41
import com.sun.tools.javac.comp.Annotate;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    42
import com.sun.tools.javac.tree.JCTree;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    43
import com.sun.tools.javac.tree.JCTree.JCClassDecl;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    44
import com.sun.tools.javac.tree.JCTree.JCCompilationUnit;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    45
import com.sun.tools.javac.util.Abort;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    46
import com.sun.tools.javac.util.Context;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    47
import com.sun.tools.javac.util.List;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    48
import com.sun.tools.javac.util.ListBuffer;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
    49
import com.sun.tools.javac.util.Position;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 *  This class could be the main entry point for Javadoc when Javadoc is used as a
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 *  component in a larger software system. It provides operations to
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 *  construct a new javadoc processor, and to run it on a set of source
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *  files.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *  @author Neal Gafter
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
public class JavadocTool extends com.sun.tools.javac.main.JavaCompiler {
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    DocEnv docenv;
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    final Context context;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    final Messager messager;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    final JavadocClassReader reader;
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    final JavadocEnter enter;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    final Annotate annotate;
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
     * Construct a new JavaCompiler processor, using appropriately
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     * extended phases of the underlying compiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    protected JavadocTool(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        super(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        this.context = context;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        messager = Messager.instance0(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        reader = JavadocClassReader.instance0(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        enter = JavadocEnter.instance0(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        annotate = Annotate.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     * For javadoc, the parser needs to keep comments. Overrides method from JavaCompiler.
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    protected boolean keepComments() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     *  Construct a new javadoc tool.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    public static JavadocTool make0(Context context) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        Messager messager = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
            // force the use of Javadoc's class reader
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
            JavadocClassReader.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            // force the use of Javadoc's own enter phase
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            JavadocEnter.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            // force the use of Javadoc's own member enter phase
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            JavadocMemberEnter.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            // force the use of Javadoc's own todo phase
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
            JavadocTodo.preRegister(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            // force the use of Messager as a Log
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
            messager = Messager.instance0(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
            return new JavadocTool(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        } catch (CompletionFailure ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            messager.error(Position.NOPOS, ex.getMessage());
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    public RootDocImpl getRootDocImpl(String doclocale,
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
                                      String encoding,
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
                                      ModifierFilter filter,
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
                                      List<String> javaNames,
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
                                      List<String[]> options,
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
                                      boolean breakiterator,
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
                                      List<String> subPackages,
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
                                      List<String> excludedPackages,
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
                                      boolean docClasses,
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
                                      boolean legacyDoclet,
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
                      boolean quiet) throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
        docenv = DocEnv.instance(context);
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        docenv.showAccess = filter;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   129
        docenv.quiet = quiet;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        docenv.breakiterator = breakiterator;
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        docenv.setLocale(doclocale);
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        docenv.setEncoding(encoding);
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        docenv.docClasses = docClasses;
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        docenv.legacyDoclet = legacyDoclet;
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        reader.sourceCompleter = docClasses ? null : this;
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        ListBuffer<String> names = new ListBuffer<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        ListBuffer<JCCompilationUnit> classTrees = new ListBuffer<JCCompilationUnit>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        ListBuffer<JCCompilationUnit> packTrees = new ListBuffer<JCCompilationUnit>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        try {
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   142
            StandardJavaFileManager fm = (StandardJavaFileManager) docenv.fileManager;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            for (List<String> it = javaNames; it.nonEmpty(); it = it.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
                String name = it.head;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
                if (!docClasses && name.endsWith(".java") && new File(name).exists()) {
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   146
                    JavaFileObject fo = fm.getJavaFileObjects(name).iterator().next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
                    docenv.notice("main.Loading_source_file", name);
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   148
                    JCCompilationUnit tree = parse(fo);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   149
                    classTrees.append(tree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
                } else if (isValidPackageName(name)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
                    names = names.append(name);
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
                } else if (name.endsWith(".java")) {
731
1dd22bdb9ca5 6714364: refactor javac File handling code into new javac.file package
jjg
parents: 10
diff changeset
   153
                    docenv.error(null, "main.file_not_found", name);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
                    docenv.error(null, "main.illegal_package_name", name);
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
            if (!docClasses) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
                // Recursively search given subpackages.  If any packages
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
                //are found, add them to the list.
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   162
                Map<String,List<JavaFileObject>> packageFiles =
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   163
                        searchSubPackages(subPackages, names, excludedPackages);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
                // Parse the packages
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
                for (List<String> packs = names.toList(); packs.nonEmpty(); packs = packs.tail) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
                    // Parse sources ostensibly belonging to package.
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   168
                    String packageName = packs.head;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   169
                    parsePackageClasses(packageName, packageFiles.get(packageName), packTrees, excludedPackages);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
                if (messager.nerrors() != 0) return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
                // Enter symbols for all files
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
                docenv.notice("main.Building_tree");
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
                enter.main(classTrees.toList().appendList(packTrees.toList()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
        } catch (Abort ex) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   180
        if (messager.nerrors() != 0)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   181
            return null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        if (docClasses)
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            return new RootDocImpl(docenv, javaNames, options);
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            return new RootDocImpl(docenv, listClasses(classTrees.toList()), names.toList(), options);
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /** Is the given string a valid package name? */
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    boolean isValidPackageName(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        int index;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        while ((index = s.indexOf('.')) != -1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            if (!isValidClassName(s.substring(0, index))) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            s = s.substring(index+1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
        return isValidClassName(s);
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     * search all directories in path for subdirectory name. Add all
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     * .java files found in such a directory to args.
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    private void parsePackageClasses(String name,
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   204
            Iterable<JavaFileObject> files,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   205
            ListBuffer<JCCompilationUnit> trees,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   206
            List<String> excludedPackages)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   207
            throws IOException {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        if (excludedPackages.contains(name)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        }
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   211
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        boolean hasFiles = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        docenv.notice("main.Loading_source_files_for_package", name);
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   214
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   215
        if (files == null) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   216
            Location location = docenv.fileManager.hasLocation(StandardLocation.SOURCE_PATH)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   217
                    ? StandardLocation.SOURCE_PATH : StandardLocation.CLASS_PATH;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   218
            ListBuffer<JavaFileObject> lb = new ListBuffer<JavaFileObject>();
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   219
            for (JavaFileObject fo: docenv.fileManager.list(
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   220
                    location, name, EnumSet.of(JavaFileObject.Kind.SOURCE), false)) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   221
                String binaryName = docenv.fileManager.inferBinaryName(location, fo);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   222
                String simpleName = getSimpleName(binaryName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   223
                if (isValidClassName(simpleName)) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   224
                    lb.append(fo);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            }
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   227
            files = lb.toList();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        }
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   229
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   230
        for (JavaFileObject fo : files) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   231
            // messager.notice("main.Loading_source_file", fn);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   232
            trees.append(parse(fo));
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   233
            hasFiles = true;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   234
        }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   235
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   236
        if (!hasFiles) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            messager.warning(null, "main.no_source_files_for_package",
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   238
                    name.replace(File.separatorChar, '.'));
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   239
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     * Recursively search all directories in path for subdirectory name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     * Add all packages found in such a directory to packages list.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     */
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   246
    private Map<String,List<JavaFileObject>> searchSubPackages(
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   247
            List<String> subPackages,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   248
            ListBuffer<String> packages,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   249
            List<String> excludedPackages)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   250
            throws IOException {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   251
        Map<String,List<JavaFileObject>> packageFiles =
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   252
                new HashMap<String,List<JavaFileObject>>();
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   253
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   254
        Map<String,Boolean> includedPackages = new HashMap<String,Boolean>();
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   255
        includedPackages.put("", true);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   256
        for (String p: excludedPackages)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   257
            includedPackages.put(p, false);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   258
10635
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   259
        StandardLocation path = docenv.fileManager.hasLocation(StandardLocation.SOURCE_PATH)
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   260
                ? StandardLocation.SOURCE_PATH : StandardLocation.CLASS_PATH;
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   261
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   262
        searchSubPackages(subPackages,
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   263
                includedPackages,
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   264
                packages, packageFiles,
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   265
                path,
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   266
                EnumSet.of(JavaFileObject.Kind.SOURCE));
028f55edd8f4 7091528: javadoc attempts to parse .class files
jjg
parents: 6716
diff changeset
   267
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   268
        return packageFiles;
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   269
    }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   270
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
    private void searchSubPackages(List<String> subPackages,
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   272
            Map<String,Boolean> includedPackages,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   273
            ListBuffer<String> packages,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   274
            Map<String, List<JavaFileObject>> packageFiles,
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   275
            StandardLocation location, Set<JavaFileObject.Kind> kinds)
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   276
            throws IOException {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   277
        for (String subPackage: subPackages) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   278
            if (!isIncluded(subPackage, includedPackages))
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   279
                continue;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   281
            for (JavaFileObject fo: docenv.fileManager.list(location, subPackage, kinds, true)) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   282
                String binaryName = docenv.fileManager.inferBinaryName(location, fo);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   283
                String packageName = getPackageName(binaryName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   284
                String simpleName = getSimpleName(binaryName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   285
                if (isIncluded(packageName, includedPackages) && isValidClassName(simpleName)) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   286
                    List<JavaFileObject> list = packageFiles.get(packageName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   287
                    list = (list == null ? List.of(fo) : list.prepend(fo));
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   288
                    packageFiles.put(packageName, list);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   289
                    if (!packages.contains(packageName))
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   290
                        packages.add(packageName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   291
                }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   292
            }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   293
        }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   294
    }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   295
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   296
    private String getPackageName(String name) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   297
        int lastDot = name.lastIndexOf(".");
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   298
        return (lastDot == -1 ? "" : name.substring(0, lastDot));
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   299
    }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   300
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   301
    private String getSimpleName(String name) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   302
        int lastDot = name.lastIndexOf(".");
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   303
        return (lastDot == -1 ? name : name.substring(lastDot + 1));
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   304
    }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   305
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   306
    private boolean isIncluded(String packageName, Map<String,Boolean> includedPackages) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   307
        Boolean b = includedPackages.get(packageName);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   308
        if (b == null) {
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   309
            b = isIncluded(getPackageName(packageName), includedPackages);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   310
            includedPackages.put(packageName, b);
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   311
        }
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 735
diff changeset
   312
        return b;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
     * Recursively search all directories in path for subdirectory name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
     * Add all packages found in such a directory to packages list.
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
    private void searchSubPackage(String packageName,
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
                                  ListBuffer<String> packages,
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
                                  List<String> excludedPackages,
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
                                  Collection<File> pathnames) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
        if (excludedPackages.contains(packageName))
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
        String packageFilename = packageName.replace('.', File.separatorChar);
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
        boolean addedPackage = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
        for (File pathname : pathnames) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
            File f = new File(pathname, packageFilename);
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
            String filenames[] = f.list();
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
            // if filenames not null, then found directory
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            if (filenames != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
                for (String filename : filenames) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
                    if (!addedPackage
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
                            && (isValidJavaSourceFile(filename) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
                                isValidJavaClassFile(filename))
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
                            && !packages.contains(packageName)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
                        packages.append(packageName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
                        addedPackage = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
                    } else if (isValidClassName(filename) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
                               (new File(f, filename)).isDirectory()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
                        searchSubPackage(packageName + "." + filename,
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
                                         packages, excludedPackages, pathnames);
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
                    }
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
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     * Return true if given file name is a valid class file name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
     * @param file the name of the file to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
     * @return true if given file name is a valid class file name
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
     * and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
    private static boolean isValidJavaClassFile(String file) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
        if (!file.endsWith(".class")) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
        String clazzName = file.substring(0, file.length() - ".class".length());
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
        return isValidClassName(clazzName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
     * Return true if given file name is a valid Java source file name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
     * @param file the name of the file to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
     * @return true if given file name is a valid Java source file name
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
     * and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
    private static boolean isValidJavaSourceFile(String file) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
        if (!file.endsWith(".java")) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
        String clazzName = file.substring(0, file.length() - ".java".length());
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
        return isValidClassName(clazzName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
    /** Are surrogates supported?
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
    final static boolean surrogatesSupported = surrogatesSupported();
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
    private static boolean surrogatesSupported() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            boolean b = Character.isHighSurrogate('a');
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
        } catch (NoSuchMethodError ex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
     * Return true if given file name is a valid class name
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
     * (including "package-info").
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 10950
diff changeset
   389
     * @param s the name of the class to check.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
     * @return true if given class name is a valid class name
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
     * and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
    public static boolean isValidClassName(String s) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
        if (s.length() < 1) return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
        if (s.equals("package-info")) return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
        if (surrogatesSupported) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
            int cp = s.codePointAt(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
            if (!Character.isJavaIdentifierStart(cp))
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
            for (int j=Character.charCount(cp); j<s.length(); j+=Character.charCount(cp)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
                cp = s.codePointAt(j);
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
                if (!Character.isJavaIdentifierPart(cp))
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
            if (!Character.isJavaIdentifierStart(s.charAt(0)))
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
            for (int j=1; j<s.length(); j++)
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
                if (!Character.isJavaIdentifierPart(s.charAt(j)))
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
     * From a list of top level trees, return the list of contained class definitions
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
    List<JCClassDecl> listClasses(List<JCCompilationUnit> trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
        ListBuffer<JCClassDecl> result = new ListBuffer<JCClassDecl>();
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        for (JCCompilationUnit t : trees) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
            for (JCTree def : t.defs) {
10950
e87b50888909 6921494: provide way to print javac tree tag values
jjg
parents: 10815
diff changeset
   422
                if (def.hasTag(JCTree.Tag.CLASSDEF))
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                    result.append((JCClassDecl)def);
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
        return result.toList();
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
}