Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin14/src/java/lang/System.java')
-rw-r--r--JCL/converterJclMin14/src/java/lang/System.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/JCL/converterJclMin14/src/java/lang/System.java b/JCL/converterJclMin14/src/java/lang/System.java
new file mode 100644
index 0000000000..bf56c93aa2
--- /dev/null
+++ b/JCL/converterJclMin14/src/java/lang/System.java
@@ -0,0 +1,20 @@
+package java.lang;
+
+import java.io.InputStream;
+import java.io.PrintStream;
+
+public final class System {
+ private static native void registerNatives();
+ static {
+ registerNatives();
+ }
+
+ private System() {
+ }
+
+ public static final InputStream in = null;
+
+ public static final PrintStream out = null;
+
+
+}

Back to the top