module-info.java revision 4081:bb0649dbe925
1/*
2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26/** Defines the implementation of the
27 *  {@link javax.tools.ToolProvider#getSystemJavaCompiler system Java compiler}
28 *  and its command line equivalent, <em>javac</em>, as well as <em>javah</em>.
29 *
30 *  @moduleGraph
31 *  @since 9
32 */
33module jdk.compiler {
34    requires transitive java.compiler;
35
36    exports com.sun.source.doctree;
37    exports com.sun.source.tree;
38    exports com.sun.source.util;
39    exports com.sun.tools.javac;
40    exports com.sun.tools.doclint to
41        jdk.javadoc;
42    exports com.sun.tools.javac.api to
43        jdk.javadoc,
44        jdk.jshell;
45    exports com.sun.tools.javac.code to
46        jdk.javadoc,
47        jdk.jshell;
48    exports com.sun.tools.javac.comp to
49        jdk.javadoc,
50        jdk.jshell;
51    exports com.sun.tools.javac.file to
52        jdk.jdeps,
53        jdk.javadoc;
54    exports com.sun.tools.javac.jvm to
55        jdk.javadoc;
56    exports com.sun.tools.javac.main to
57        jdk.javadoc;
58    exports com.sun.tools.javac.model to
59        jdk.javadoc;
60    exports com.sun.tools.javac.parser to
61        jdk.jshell;
62    exports com.sun.tools.javac.platform to
63        jdk.javadoc;
64    exports com.sun.tools.javac.tree to
65        jdk.javadoc,
66        jdk.jshell;
67    exports com.sun.tools.javac.util to
68        jdk.jdeps,
69        jdk.javadoc,
70        jdk.jshell;
71    exports jdk.internal.shellsupport.doc to
72        jdk.jshell,
73        jdk.scripting.nashorn.shell;
74
75    uses javax.annotation.processing.Processor;
76    uses com.sun.source.util.Plugin;
77    uses com.sun.tools.javac.platform.PlatformProvider;
78
79    provides java.util.spi.ToolProvider
80        with com.sun.tools.javac.main.JavacToolProvider;
81
82    provides com.sun.tools.javac.platform.PlatformProvider
83        with com.sun.tools.javac.platform.JDKPlatformProvider;
84
85    provides javax.tools.JavaCompiler
86        with com.sun.tools.javac.api.JavacTool;
87
88    provides javax.tools.Tool
89        with com.sun.tools.javac.api.JavacTool;
90}
91
92