module-info.java revision 3990:6967e22a5ddd
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 *  @since 9
31 */
32module jdk.compiler {
33    requires transitive java.compiler;
34
35    exports com.sun.source.doctree;
36    exports com.sun.source.tree;
37    exports com.sun.source.util;
38    exports com.sun.tools.javac;
39    exports com.sun.tools.doclint to
40        jdk.javadoc;
41    exports com.sun.tools.javac.api to
42        jdk.javadoc,
43        jdk.jshell;
44    exports com.sun.tools.javac.code to
45        jdk.javadoc,
46        jdk.jshell;
47    exports com.sun.tools.javac.comp to
48        jdk.javadoc,
49        jdk.jshell;
50    exports com.sun.tools.javac.file to
51        jdk.jdeps,
52        jdk.javadoc;
53    exports com.sun.tools.javac.jvm to
54        jdk.javadoc;
55    exports com.sun.tools.javac.main to
56        jdk.javadoc;
57    exports com.sun.tools.javac.model to
58        jdk.javadoc;
59    exports com.sun.tools.javac.parser to
60        jdk.jshell;
61    exports com.sun.tools.javac.platform to
62        jdk.javadoc;
63    exports com.sun.tools.javac.tree to
64        jdk.javadoc,
65        jdk.jshell;
66    exports com.sun.tools.javac.util to
67        jdk.jdeps,
68        jdk.javadoc,
69        jdk.jshell;
70    exports jdk.internal.shellsupport.doc to
71        jdk.jshell,
72        jdk.scripting.nashorn.shell;
73
74    uses javax.annotation.processing.Processor;
75    uses com.sun.source.util.Plugin;
76    uses com.sun.tools.javac.platform.PlatformProvider;
77
78    provides java.util.spi.ToolProvider
79        with com.sun.tools.javac.main.JavacToolProvider;
80
81    provides com.sun.tools.javac.platform.PlatformProvider
82        with com.sun.tools.javac.platform.JDKPlatformProvider;
83
84    provides javax.tools.JavaCompiler
85        with com.sun.tools.javac.api.JavacTool;
86
87    provides javax.tools.Tool
88        with com.sun.tools.javac.api.JavacTool;
89}
90
91