System.hx 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (C)2005-2012 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. package java.lang;
  23. import haxe.Int64;
  24. extern class System
  25. {
  26. static var err(default, null):java.io.PrintStream;
  27. static var out(default, null):java.io.PrintStream;
  28. //static var in(default, null):java.io.InputStream; //collision
  29. static function arraycopy(src:Dynamic, srcPos:Int, dest:Dynamic, destPos:Int, length:Int):Void;
  30. static function clearProperty(key:String):String;
  31. static function currentTimeMillis():Int64;
  32. static function exit(status:Int):Void;
  33. @:overload(function():java.util.Map<String,String> {})
  34. static function getenv(name:String):String;
  35. static function getProperty(key:String, ?def:String):String;
  36. static function identityHashCode(x:Dynamic):Int;
  37. static function load(filename:String):Void;
  38. static function loadLibrary(libname:String):Void;
  39. static function mapLibraryName(libname:String):String;
  40. static function nanoTime():Int64;
  41. static function gc():Void;
  42. static function runFinalization():Void;
  43. static function setErr(err:java.io.PrintStream):Void;
  44. static function setOut(out:java.io.PrintStream):Void;
  45. static function setIn(v:java.io.InputStream):Void;
  46. static function setProperty(key:String, value:String):String;
  47. }