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