Class ReplacementForSystem
- java.lang.Object
-
- de.inetsoftware.jwebassembly.api.java.lang.ReplacementForSystem
-
class ReplacementForSystem extends java.lang.Object
Replacement methods for the class java.lang.System.
-
-
Constructor Summary
Constructors Constructor Description ReplacementForSystem()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static void
arraycopy()
Replacement forSystem.arraycopy(Object, int, Object, int, int)
(package private) static long
currentTimeMillis()
Replacement for System.currentTimeMillis()static void
exit(int status)
Replacement forSystem.exit(int)
(package private) static int
identityHashCode(java.lang.Object x)
Replacement forSystem.identityHashCode(Object)
(package private) static long
nanoTime()
Replacement for System.nanoTime()private static void
registerNatives()
Replacement for System.registerNatives()
-
-
-
Method Detail
-
registerNatives
private static void registerNatives()
Replacement for System.registerNatives()
-
currentTimeMillis
static long currentTimeMillis()
Replacement for System.currentTimeMillis()
-
nanoTime
static long nanoTime()
Replacement for System.nanoTime()
-
arraycopy
static void arraycopy()
Replacement forSystem.arraycopy(Object, int, Object, int, int)
-
identityHashCode
static int identityHashCode(java.lang.Object x)
Replacement forSystem.identityHashCode(Object)
-
exit
public static void exit(int status)
Replacement forSystem.exit(int)
-
-