Sha256: f94fd9812880ee69bd528e05bd9a08aa7675a8ab89cc63b627ced779e7f32946
Contents?: true
Size: 515 Bytes
Versions: 76
Compression:
Stored size: 515 Bytes
Contents
package j2me.lang; import j2me.util.HashMap; public class SystemMe { public static long nanoTime() { return System.currentTimeMillis()*1000000; } public static j2me.util.Map getenv() { //TODO: getenv return new HashMap(); } public static String getenv(String name) { //TODO: getenv return ""; } public static String setProperty(String key, String value) { //TODO: setProperty return ""; } }
Version data entries
76 entries across 76 versions & 1 rubygems