corda/classpath/java/lang/System.java

24 lines
477 B
Java
Raw Normal View History

2007-06-25 01:34:07 +00:00
package java.lang;
public abstract class System {
public static final Output out = new Output();
public static final Output err = out;
2007-06-25 01:34:07 +00:00
static {
loadLibrary("natives");
}
public static native void loadLibrary(String name);
public static native String getProperty(String name);
2007-06-25 01:34:07 +00:00
public static class Output {
public native void print(String s);
public void println(String s) {
print(s);
print(getProperty("line.separator"));
}
2007-06-25 01:34:07 +00:00
}
}