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 CustomInputStream extends
07: org.omg.CORBA.DataInputStream {
08: public java.io.Serializable read_value();
09:
10: public java.io.Serializable read_value(java.lang.String repId);
11:
12: public java.io.Serializable read_value(java.lang.Class expected);
13:
14: public java.lang.Object read_abstract_interface();
15:
16: public java.lang.Object read_abstract_interface(
17: java.lang.Class expected);
18:
19: public java.io.Serializable read_value(
20: org.omg.CORBA.portable.BoxedValueHelper helper); // boxed valuetypes
21:
22: }
|