summaryrefslogtreecommitdiff
path: root/ojluni/annotations/hiddenapi/java/lang/ClassLoader.java
blob: 6af0cb8223f638a473e29a2db2d63f9cbd7d1a85 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 * Copyright (C) 2014 The Android Open Source Project
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package java.lang;

import dalvik.annotation.compat.UnsupportedAppUsage;

@SuppressWarnings({"unchecked", "deprecation", "all"})
public abstract class ClassLoader {

    private ClassLoader(java.lang.Void unused, java.lang.ClassLoader parent) {
        throw new RuntimeException("Stub!");
    }

    protected ClassLoader(java.lang.ClassLoader parent) {
        throw new RuntimeException("Stub!");
    }

    protected ClassLoader() {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.ClassLoader createSystemClassLoader() {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.Void checkCreateClassLoader() {
        throw new RuntimeException("Stub!");
    }

    public java.lang.Class<?> loadClass(java.lang.String name)
            throws java.lang.ClassNotFoundException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Class<?> loadClass(java.lang.String name, boolean resolve)
            throws java.lang.ClassNotFoundException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Class<?> findClass(java.lang.String name)
            throws java.lang.ClassNotFoundException {
        throw new RuntimeException("Stub!");
    }

    @Deprecated
    protected final java.lang.Class<?> defineClass(byte[] b, int off, int len)
            throws java.lang.ClassFormatError {
        throw new RuntimeException("Stub!");
    }

    protected final java.lang.Class<?> defineClass(
            java.lang.String name, byte[] b, int off, int len) throws java.lang.ClassFormatError {
        throw new RuntimeException("Stub!");
    }

    protected final java.lang.Class<?> defineClass(
            java.lang.String name,
            byte[] b,
            int off,
            int len,
            java.security.ProtectionDomain protectionDomain)
            throws java.lang.ClassFormatError {
        throw new RuntimeException("Stub!");
    }

    protected final java.lang.Class<?> defineClass(
            java.lang.String name,
            java.nio.ByteBuffer b,
            java.security.ProtectionDomain protectionDomain)
            throws java.lang.ClassFormatError {
        throw new RuntimeException("Stub!");
    }

    protected final void resolveClass(java.lang.Class<?> c) {
        throw new RuntimeException("Stub!");
    }

    protected final java.lang.Class<?> findSystemClass(java.lang.String name)
            throws java.lang.ClassNotFoundException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Class<?> findBootstrapClassOrNull(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    protected final java.lang.Class<?> findLoadedClass(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    protected final void setSigners(java.lang.Class<?> c, java.lang.Object[] signers) {
        throw new RuntimeException("Stub!");
    }

    public java.net.URL getResource(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    public java.util.Enumeration<java.net.URL> getResources(java.lang.String name)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected java.net.URL findResource(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    protected java.util.Enumeration<java.net.URL> findResources(java.lang.String name)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected static boolean registerAsParallelCapable() {
        throw new RuntimeException("Stub!");
    }

    public static java.net.URL getSystemResource(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    public static java.util.Enumeration<java.net.URL> getSystemResources(java.lang.String name)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private static java.net.URL getBootstrapResource(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    private static java.util.Enumeration<java.net.URL> getBootstrapResources(java.lang.String name)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public java.io.InputStream getResourceAsStream(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    public static java.io.InputStream getSystemResourceAsStream(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    public final java.lang.ClassLoader getParent() {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.ClassLoader getSystemClassLoader() {
        throw new RuntimeException("Stub!");
    }

    static java.lang.ClassLoader getClassLoader(java.lang.Class<?> caller) {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Package definePackage(
            java.lang.String name,
            java.lang.String specTitle,
            java.lang.String specVersion,
            java.lang.String specVendor,
            java.lang.String implTitle,
            java.lang.String implVersion,
            java.lang.String implVendor,
            java.net.URL sealBase)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Package getPackage(java.lang.String name) {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Package[] getPackages() {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.String findLibrary(java.lang.String libname) {
        throw new RuntimeException("Stub!");
    }

    public void setDefaultAssertionStatus(boolean enabled) {
        throw new RuntimeException("Stub!");
    }

    public void setPackageAssertionStatus(java.lang.String packageName, boolean enabled) {
        throw new RuntimeException("Stub!");
    }

    public void setClassAssertionStatus(java.lang.String className, boolean enabled) {
        throw new RuntimeException("Stub!");
    }

    public void clearAssertionStatus() {
        throw new RuntimeException("Stub!");
    }

    private transient long allocator;

    private transient long classTable;

    private final java.util.HashMap<java.lang.String, java.lang.Package> packages;

    {
        packages = null;
    }

    @UnsupportedAppUsage
    private final java.lang.ClassLoader parent;

    {
        parent = null;
    }

    public final java.util.Map<java.util.List<java.lang.Class<?>>, java.lang.Class<?>> proxyCache;

    {
        proxyCache = null;
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private static class SystemClassLoader {

        private SystemClassLoader() {
            throw new RuntimeException("Stub!");
        }

        public static java.lang.ClassLoader loader;
    }
}