1 2 3 6 package cz.cuni.sofa.lib; 7 import java.io.IOException ; 8 9 public abstract class OutputStream extends java.io.OutputStream { 10 11 public abstract void write_boolean (boolean value) throws IOException ; 12 public abstract void write_char (char value) throws IOException ; 13 public abstract void write_wchar (char value) throws IOException ; 14 public abstract void write_octet (byte value) throws IOException ; 15 public abstract void write_short (short value) throws IOException ; 16 public abstract void write_ushort (short value) throws IOException ; 17 public abstract void write_long (int value) throws IOException ; 18 public abstract void write_ulong (int value) throws IOException ; 19 public abstract void write_longlong (long value) throws IOException ; 20 public abstract void write_ulonglong (long value) throws IOException ; 21 public abstract void write_float (float value) throws IOException ; 22 public abstract void write_double (double value) throws IOException ; 23 public abstract void write_string (String value) throws IOException ; 24 public abstract void write_wstring (String value) throws IOException ; 25 26 27 public abstract void write_boolean_array( 28 boolean[] value, int offset, int length) throws IOException ; 29 public abstract void write_char_array( 30 char[] value, int offset, int length) throws IOException ; 31 public abstract void write_wchar_array( 32 char[] value, int offset, int length) throws IOException ; 33 public abstract void write_octet_array( 34 byte[] value, int offset, int length) throws IOException ; 35 public abstract void write_short_array( 36 short[] value, int offset, int length) throws IOException ; 37 public abstract void write_ushort_array( 38 short[] value, int offset, int length) throws IOException ; 39 public abstract void write_long_array(int[] value, int offset, int length) throws IOException ; 40 public abstract void write_ulong_array( 41 int[] value, int offset, int length) throws IOException ; 42 public abstract void write_longlong_array( 43 long[] value, int offset, int length) throws IOException ; 44 public abstract void write_ulonglong_array( 45 long[] value, int offset, int length) throws IOException ; 46 public abstract void write_float_array( 47 float[] value, int offset, int length) throws IOException ; 48 public abstract void write_double_array( 49 double[] value, int offset, int length) throws IOException ; 50 51 52 public abstract void write_Object(cz.cuni.sofa.lib.Object value) throws IOException ; 53 54 58 59 } 60 | Popular Tags |