KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cz > cuni > sofa > lib > InputStream


1 /* $Id: InputStream.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2
3 /* This code is based on the OMG's IDL Java Language mapping
4  * definitions (OMG document formal/99-06-02).
5  */

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

54
55 }
56
Popular Tags