KickJava   Java API By Example, From Geeks To Geeks.

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


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

58
59 }
60
Popular Tags