1 2 3 6 7 package cz.cuni.sofa.lib; 8 import java.io.IOException ; 9 10 public abstract class InputStream extends java.io.InputStream { 11 12 public abstract boolean read_boolean() throws IOException ; 13 public abstract char read_char() throws IOException ; 14 public abstract char read_wchar() throws IOException ; 15 public abstract byte read_octet() throws IOException ; 16 public abstract short read_short() throws IOException ; 17 public abstract short read_ushort() throws IOException ; 18 public abstract int read_long() throws IOException ; 19 public abstract int read_ulong() throws IOException ; 20 public abstract long read_longlong() throws IOException ; 21 public abstract long read_ulonglong() throws IOException ; 22 public abstract float read_float() throws IOException ; 23 public abstract double read_double() throws IOException ; 24 public abstract String read_string() throws IOException ; 25 public abstract String read_wstring() throws IOException ; 26 27 public abstract void read_boolean_array( 28 boolean[] value, int offset, int length) throws IOException ; 29 public abstract void read_char_array(char[] value, int offset, int length) throws IOException ; 30 public abstract void read_wchar_array( 31 char[] value, int offset, int length) throws IOException ; 32 public abstract void read_octet_array( 33 byte[] value, int offset, int length) throws IOException ; 34 public abstract void read_short_array( 35 short[] value, int offset, int length) throws IOException ; 36 public abstract void read_ushort_array( 37 short[] value, int offset, int length) throws IOException ; 38 public abstract void read_long_array(int[] value, int offset, int length) throws IOException ; 39 public abstract void read_ulong_array(int[] value, int offset, int length) throws IOException ; 40 public abstract void read_longlong_array( 41 long[] value, int offset, int length) throws IOException ; 42 public abstract void read_ulonglong_array( 43 long[] value, int offset, int length) throws IOException ; 44 public abstract void read_float_array( 45 float[] value, int offset, int length) throws IOException ; 46 public abstract void read_double_array( 47 double[] value, int offset, int length) throws IOException ; 48 49 public abstract cz.cuni.sofa.lib.Object read_Object() throws IOException ; 50 51 54 55 } 56 | Popular Tags |