package java.lang;

import java.io.PrintStream;

public class System
{
 public static final PrintStream out;
 public static final PrintStream err;

 public static long currentTimeMillis()
 {
  return 0;
 }
 
 public static void arraycopy(Object object_1, int int_1, Object object_2, int int_2, int int_3)
 {
 }
 
 public static int identityHashCode(Object object_1)
 {
  return 0;
 }
 
 public static String getProperty(String string_1)
 {
  return null;
 }
 
 public static void exit(int int_1)
 {
 }
 
 public static void gc()
 {
 }
 
}