ObjectOutput.hx 1001 B

1234567891011121314151617181920212223
  1. package flash.utils;
  2. extern class ObjectOutput implements IDataOutput {
  3. @:flash.property var endian(get,set) : Endian;
  4. @:flash.property var objectEncoding(get,set) : UInt;
  5. function new() : Void;
  6. private function get_endian() : Endian;
  7. private function get_objectEncoding() : UInt;
  8. private function set_endian(value : Endian) : Endian;
  9. private function set_objectEncoding(value : UInt) : UInt;
  10. function writeBoolean(value : Bool) : Void;
  11. function writeByte(value : Int) : Void;
  12. function writeBytes(bytes : ByteArray, offset : UInt = 0, length : UInt = 0) : Void;
  13. function writeDouble(value : Float) : Void;
  14. function writeFloat(value : Float) : Void;
  15. function writeInt(value : Int) : Void;
  16. function writeMultiByte(value : String, charSet : String) : Void;
  17. function writeObject(object : Dynamic) : Void;
  18. function writeShort(value : Int) : Void;
  19. function writeUTF(value : String) : Void;
  20. function writeUTFBytes(value : String) : Void;
  21. function writeUnsignedInt(value : UInt) : Void;
  22. }