blob: 6c2bc125fc763e2d2c72a0b938f69889d2d7e739 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module java.base {
// oj
exports com.sun.net.ssl.internal.ssl;
exports com.sun.nio.file;
exports com.sun.security.cert.internal.x509;
exports java.awt.font;
exports java.beans;
exports java.io;
exports java.lang;
exports java.lang.annotation;
exports java.lang.invoke;
exports java.lang.ref;
exports java.lang.reflect;
exports java.net;
exports java.nio;
exports java.nio.channels;
exports java.nio.channels.spi;
exports java.nio.charset;
exports java.nio.charset.spi;
exports java.nio.file;
exports java.nio.file.attribute;
exports java.nio.file.spi;
exports java.security;
exports java.security.acl;
exports java.security.cert;
exports java.security.interfaces;
exports java.security.spec;
exports java.sql;
exports java.text;
exports java.time;
exports java.time.chrono;
exports java.time.format;
exports java.time.temporal;
exports java.time.zone;
exports java.util;
exports java.util.concurrent;
exports java.util.concurrent.atomic;
exports java.util.concurrent.locks;
exports java.util.function;
exports java.util.jar;
exports java.util.logging;
exports java.util.prefs;
exports java.util.regex;
exports java.util.stream;
exports java.util.zip;
exports javax.crypto;
exports javax.crypto.interfaces;
exports javax.crypto.spec;
exports javax.net;
exports javax.net.ssl;
exports javax.security.auth;
exports javax.security.auth.callback;
exports javax.security.auth.login;
exports javax.security.auth.x500;
exports javax.security.cert;
exports javax.sql;
exports jdk.internal.util;
exports jdk.internal.vm.annotation;
exports jdk.net;
exports sun.invoke.util;
exports sun.misc;
exports sun.net;
exports sun.net.ftp;
exports sun.net.ftp.impl;
exports sun.net.spi;
exports sun.net.spi.nameservice;
exports sun.net.util;
exports sun.net.www;
exports sun.net.www.protocol.file;
exports sun.net.www.protocol.ftp;
exports sun.net.www.protocol.jar;
exports sun.nio;
exports sun.nio.ch;
exports sun.nio.cs;
exports sun.nio.fs;
exports sun.reflect;
exports sun.reflect.misc;
exports sun.security.action;
exports sun.security.jca;
exports sun.security.pkcs;
exports sun.security.provider;
exports sun.security.provider.certpath;
exports sun.security.timestamp;
exports sun.security.util;
exports sun.security.x509;
exports sun.util;
exports sun.util.calendar;
exports sun.util.locale;
exports sun.util.locale.provider;
exports sun.util.logging;
exports sun.util.resources;
// non-oj
exports android.system;
exports android.icu.impl;
exports android.icu.math;
exports android.icu.text;
exports android.icu.util;
exports dalvik.annotation.optimization;
exports dalvik.system;
exports java.math;
exports javax.xml.parsers;
exports libcore.io;
exports libcore.icu;
exports libcore.net;
exports libcore.net.event;
exports libcore.net.http;
exports libcore.reflect;
exports libcore.timezone;
exports libcore.util;
exports org.json;
}
|