< prev index next >

src/java.base/share/classes/module-info.java

Print this page

118     exports java.util.concurrent.atomic;
119     exports java.util.concurrent.locks;
120     exports java.util.function;
121     exports java.util.jar;
122     exports java.util.random;
123     exports java.util.regex;
124     exports java.util.spi;
125     exports java.util.stream;
126     exports java.util.zip;
127     exports javax.crypto;
128     exports javax.crypto.interfaces;
129     exports javax.crypto.spec;
130     exports javax.net;
131     exports javax.net.ssl;
132     exports javax.security.auth;
133     exports javax.security.auth.callback;
134     exports javax.security.auth.login;
135     exports javax.security.auth.spi;
136     exports javax.security.auth.x500;
137     exports javax.security.cert;

138 
139 
140     // additional qualified exports may be inserted at build time
141     // see make/gensrc/GenModuleInfo.gmk
142 
143     exports com.sun.crypto.provider to
144         jdk.crypto.cryptoki;
145     exports sun.invoke.util to
146         jdk.compiler;
147     exports com.sun.security.ntlm to
148         java.security.sasl;
149     // Note: all modules in the exported list participate in preview  features
150     // and therefore if they use preview features they do not need to be
151     // compiled with "--enable-preview".
152     // It is recommended for any modules that do participate that their
153     // module declaration be annotated with jdk.internal.javac.ParticipatesInPreview
154     exports jdk.internal.javac to
155         java.compiler,
156         java.desktop, // for ScopedValue
157         jdk.compiler,

118     exports java.util.concurrent.atomic;
119     exports java.util.concurrent.locks;
120     exports java.util.function;
121     exports java.util.jar;
122     exports java.util.random;
123     exports java.util.regex;
124     exports java.util.spi;
125     exports java.util.stream;
126     exports java.util.zip;
127     exports javax.crypto;
128     exports javax.crypto.interfaces;
129     exports javax.crypto.spec;
130     exports javax.net;
131     exports javax.net.ssl;
132     exports javax.security.auth;
133     exports javax.security.auth.callback;
134     exports javax.security.auth.login;
135     exports javax.security.auth.spi;
136     exports javax.security.auth.x500;
137     exports javax.security.cert;
138     exports net.shipilev;
139 
140 
141     // additional qualified exports may be inserted at build time
142     // see make/gensrc/GenModuleInfo.gmk
143 
144     exports com.sun.crypto.provider to
145         jdk.crypto.cryptoki;
146     exports sun.invoke.util to
147         jdk.compiler;
148     exports com.sun.security.ntlm to
149         java.security.sasl;
150     // Note: all modules in the exported list participate in preview  features
151     // and therefore if they use preview features they do not need to be
152     // compiled with "--enable-preview".
153     // It is recommended for any modules that do participate that their
154     // module declaration be annotated with jdk.internal.javac.ParticipatesInPreview
155     exports jdk.internal.javac to
156         java.compiler,
157         java.desktop, // for ScopedValue
158         jdk.compiler,
< prev index next >