1 7 package org.omg.CORBA.portable; 8 9 import org.omg.CORBA.TypeCode ; 10 import org.omg.CORBA.Principal ; 11 import org.omg.CORBA.Any ; 12 13 23 24 25 public abstract class OutputStream extends java.io.OutputStream 26 { 27 31 public abstract InputStream create_input_stream(); 32 33 37 public abstract void write_boolean(boolean value); 38 42 public abstract void write_char(char value); 43 47 public abstract void write_wchar(char value); 48 52 public abstract void write_octet(byte value); 53 57 public abstract void write_short(short value); 58 62 public abstract void write_ushort(short value); 63 67 public abstract void write_long(int value); 68 72 public abstract void write_ulong(int value); 73 77 public abstract void write_longlong(long value); 78 82 public abstract void write_ulonglong(long value); 83 87 public abstract void write_float(float value); 88 92 public abstract void write_double(double value); 93 97 public abstract void write_string(String value); 98 102 public abstract void write_wstring(String value); 103 104 110 public abstract void write_boolean_array(boolean[] value, int offset, 111 int length); 112 118 public abstract void write_char_array(char[] value, int offset, 119 int length); 120 126 public abstract void write_wchar_array(char[] value, int offset, 127 int length); 128 134 public abstract void write_octet_array(byte[] value, int offset, 135 int length); 136 142 public abstract void write_short_array(short[] value, int offset, 143 int length); 144 150 public abstract void write_ushort_array(short[] value, int offset, 151 int length); 152 158 public abstract void write_long_array(int[] value, int offset, 159 int length); 160 166 public abstract void write_ulong_array(int[] value, int offset, 167 int length); 168 174 public abstract void write_longlong_array(long[] value, int offset, 175 int length); 176 182 public abstract void write_ulonglong_array(long[] value, int offset, 183 int length); 184 190 public abstract void write_float_array(float[] value, int offset, 191 int length); 192 198 public abstract void write_double_array(double[] value, int offset, 199 int length); 200 204 public abstract void write_Object(org.omg.CORBA.Object value); 205 209 public abstract void write_TypeCode(TypeCode value); 210 214 public abstract void write_any(Any value); 215 216 221 @Deprecated 222 public void write_Principal(Principal value) { 223 throw new org.omg.CORBA.NO_IMPLEMENT (); 224 } 225 226 233 public void write(int b) throws java.io.IOException { 234 throw new org.omg.CORBA.NO_IMPLEMENT (); 235 } 236 237 241 public void write_fixed(java.math.BigDecimal value) { 242 throw new org.omg.CORBA.NO_IMPLEMENT (); 243 } 244 245 256 public void write_Context(org.omg.CORBA.Context ctx, 257 org.omg.CORBA.ContextList contexts) { 258 throw new org.omg.CORBA.NO_IMPLEMENT (); 259 } 260 261 267 public org.omg.CORBA.ORB orb() { 268 throw new org.omg.CORBA.NO_IMPLEMENT (); 269 } 270 } 271 | Popular Tags |