Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2020-09-16 03:59:22 +0000
committerJay Arthanareeswaran2020-09-16 03:59:22 +0000
commit27b53ca171a19db4794ec310f4e339e876ea495f (patch)
tree3b12fd95b0afb9a5401d836d115751d13588c5c0 /JCL/converterJclMin1.7/src/java/lang/Class.java
parenta8b03f929def2f6a9f479a198856e34e6cd4af34 (diff)
parent0a27063a3e6012ba850fd756f98be50be0375dc3 (diff)
downloadeclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.gz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.xz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.zip
Merge remote-tracking branch 'origin/BETA_JAVA15'
Diffstat (limited to 'JCL/converterJclMin1.7/src/java/lang/Class.java')
-rw-r--r--JCL/converterJclMin1.7/src/java/lang/Class.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/JCL/converterJclMin1.7/src/java/lang/Class.java b/JCL/converterJclMin1.7/src/java/lang/Class.java
new file mode 100644
index 0000000000..7e82f809c8
--- /dev/null
+++ b/JCL/converterJclMin1.7/src/java/lang/Class.java
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package java.lang;
+
+import java.io.InputStream;
+
+public class Class<T> {
+ public String getName() {
+ return null;
+ }
+ public InputStream getResourceAsStream(String s) {
+ return null;
+ }
+
+ public native Class<? super T> getSuperclass();
+
+ public T newInstance() throws InstantiationException, IllegalAccessException {
+ return null;
+ }
+
+ public static Class<?> forName(String className) throws ClassNotFoundException {
+ return null;
+ }
+}

Back to the top