1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 2 3 duplicate and use this code are hereby granted provided that this 4 5 copyright notice is included.6 7 *****/8 9 10 11 package org.omg.CORBA_2_3.portable;12 13 14 15 abstract public class InputStream extends org.omg.CORBA.portable.InputStream {16 17 18 19 public java.io.Serializable read_value() {20 21 throw new org.omg.CORBA.NO_IMPLEMENT ();22 23 }24 25 26 27 public java.io.Serializable read_value(java.lang.String rep_id) {28 29 throw new org.omg.CORBA.NO_IMPLEMENT ();30 31 }32 33 34 35 public java.io.Serializable read_value(java.lang.Class clz) {36 37 throw new org.omg.CORBA.NO_IMPLEMENT ();38 39 }40 41 42 43 public java.io.Serializable read_value(44 45 org.omg.CORBA.portable.BoxedValueHelper factory) {46 47 throw new org.omg.CORBA.NO_IMPLEMENT ();48 49 }50 51 52 53 public java.io.Serializable read_value(java.io.Serializable value) {54 55 throw new org.omg.CORBA.NO_IMPLEMENT ();56 57 }58 59 60 61 public java.lang.Object read_abstract_interface() {62 63 throw new org.omg.CORBA.NO_IMPLEMENT ();64 65 }66 67 68 69 public java.lang.Object read_abstract_interface(java.lang.Class clz) {70 71 throw new org.omg.CORBA.NO_IMPLEMENT ();72 73 }74 75 76 77 }78 79