01: /***** Copyright (c) 2001 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public interface CustomOutputStream extends
07: org.omg.CORBA.DataOutputStream {
08: public void write_value(java.io.Serializable value);
09:
10: public void write_value(java.io.Serializable value,
11: java.lang.String repId);
12:
13: public void write_value(java.io.Serializable value,
14: org.omg.CORBA.portable.BoxedValueHelper helper);
15:
16: public void write_abstract_interface(java.lang.Object obj);
17: }
|