1 7 8 package org.omg.CORBA; 9 10 17 public interface DataOutputStream extends org.omg.CORBA.portable.ValueBase 18 { 19 23 void write_any (org.omg.CORBA.Any value); 24 25 29 void write_boolean (boolean value); 30 31 35 void write_char (char value); 36 37 41 void write_wchar (char value); 42 43 47 void write_octet (byte value); 48 49 53 void write_short (short value); 54 55 60 void write_ushort (short value); 61 62 66 void write_long (int value); 67 68 72 void write_ulong (int value); 73 74 78 void write_longlong (long value); 79 80 85 void write_ulonglong (long value); 86 87 91 void write_float (float value); 92 93 97 void write_double (double value); 98 99 101 105 void write_string (String value); 106 107 111 void write_wstring (String value); 112 113 117 void write_Object (org.omg.CORBA.Object value); 118 119 123 void write_Abstract (java.lang.Object value); 124 125 129 void write_Value (java.io.Serializable value); 130 131 135 void write_TypeCode (org.omg.CORBA.TypeCode value); 136 137 145 void write_any_array (org.omg.CORBA.Any [] seq, int offset, int length); 146 147 155 void write_boolean_array (boolean[] seq, int offset, int length); 156 157 165 void write_char_array (char[] seq, int offset, int length); 166 167 175 void write_wchar_array (char[] seq, int offset, int length); 176 177 185 void write_octet_array (byte[] seq, int offset, int length); 186 187 195 void write_short_array (short[] seq, int offset, int length); 196 197 205 void write_ushort_array (short[] seq, int offset, int length); 206 207 215 void write_long_array (int[] seq, int offset, int length); 216 217 225 void write_ulong_array (int[] seq, int offset, int length); 226 227 235 void write_ulonglong_array (long[] seq, int offset, int length); 236 237 245 void write_longlong_array (long[] seq, int offset, int length); 246 247 255 void write_float_array (float[] seq, int offset, int length); 256 257 265 void write_double_array (double[] seq, int offset, int length); 266 } | Popular Tags |