author | asaha |
Tue, 18 Jul 2017 10:39:10 -0700 | |
changeset 45996 | 7272807bd613 |
parent 42498 | ceaf5bafa1b5 |
child 43862 | a9b0f76e15bf |
permissions | -rw-r--r-- |
36526 | 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 |
||
40507
4413083331c7
8162576: Missing doclint check missing for modules
sadayapalam
parents:
36991
diff
changeset
|
26 |
/** Defines the implementation of the |
4413083331c7
8162576: Missing doclint check missing for modules
sadayapalam
parents:
36991
diff
changeset
|
27 |
* {@link javax.tools.ToolProvider#getSystemJavaCompiler system Java compiler} |
4413083331c7
8162576: Missing doclint check missing for modules
sadayapalam
parents:
36991
diff
changeset
|
28 |
* and its command line equivalent, <em>javac</em>, as well as <em>javah</em>. |
4413083331c7
8162576: Missing doclint check missing for modules
sadayapalam
parents:
36991
diff
changeset
|
29 |
*/ |
36526 | 30 |
module jdk.compiler { |
42407
f3702cff2933
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41865
diff
changeset
|
31 |
requires transitive java.compiler; |
36526 | 32 |
|
33 |
exports com.sun.source.doctree; |
|
34 |
exports com.sun.source.tree; |
|
35 |
exports com.sun.source.util; |
|
36 |
exports com.sun.tools.javac; |
|
37 |
exports com.sun.tools.doclint to |
|
38 |
jdk.javadoc; |
|
39 |
exports com.sun.tools.javac.api to |
|
40 |
jdk.javadoc, |
|
41 |
jdk.jshell; |
|
42 |
exports com.sun.tools.javac.code to |
|
43 |
jdk.javadoc, |
|
44 |
jdk.jshell; |
|
45 |
exports com.sun.tools.javac.comp to |
|
46 |
jdk.javadoc, |
|
47 |
jdk.jshell; |
|
48 |
exports com.sun.tools.javac.file to |
|
49 |
jdk.jdeps, |
|
50 |
jdk.javadoc; |
|
51 |
exports com.sun.tools.javac.jvm to |
|
52 |
jdk.javadoc; |
|
53 |
exports com.sun.tools.javac.main to |
|
54 |
jdk.javadoc; |
|
55 |
exports com.sun.tools.javac.model to |
|
56 |
jdk.javadoc; |
|
57 |
exports com.sun.tools.javac.parser to |
|
58 |
jdk.jshell; |
|
59 |
exports com.sun.tools.javac.platform to |
|
60 |
jdk.javadoc; |
|
61 |
exports com.sun.tools.javac.tree to |
|
62 |
jdk.javadoc, |
|
63 |
jdk.jshell; |
|
64 |
exports com.sun.tools.javac.util to |
|
65 |
jdk.jdeps, |
|
66 |
jdk.javadoc, |
|
67 |
jdk.jshell; |
|
41865 | 68 |
exports jdk.internal.shellsupport.doc to |
69 |
jdk.jshell, |
|
70 |
jdk.scripting.nashorn.shell; |
|
36526 | 71 |
|
72 |
uses javax.annotation.processing.Processor; |
|
73 |
uses com.sun.source.util.Plugin; |
|
74 |
uses com.sun.tools.javac.platform.PlatformProvider; |
|
75 |
||
41448 | 76 |
provides java.util.spi.ToolProvider |
77 |
with com.sun.tools.javac.main.JavacToolProvider; |
|
78 |
||
36526 | 79 |
provides com.sun.tools.javac.platform.PlatformProvider |
80 |
with com.sun.tools.javac.platform.JDKPlatformProvider; |
|
81 |
||
82 |
provides javax.tools.JavaCompiler |
|
83 |
with com.sun.tools.javac.api.JavacTool; |
|
42498 | 84 |
|
85 |
provides javax.tools.Tool |
|
86 |
with com.sun.tools.javac.api.JavacTool; |
|
36526 | 87 |
} |
88 |