001    /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 
002           duplicate and use this code are hereby granted provided that this 
003           copyright notice is included.
004    *****/
005    
006    package org.omg.CORBA_2_3.portable;
007    
008    abstract public class OutputStream extends org.omg.CORBA.portable.OutputStream{
009    
010        public void write_value(java.io.Serializable value) {
011            throw new org.omg.CORBA.NO_IMPLEMENT();
012        }
013    
014        public void write_value(java.io.Serializable value,
015                        java.lang.String rep_id) {
016            throw new org.omg.CORBA.NO_IMPLEMENT();
017        }
018    
019        public void write_value(java.io.Serializable value, Class clz) {
020            throw new org.omg.CORBA.NO_IMPLEMENT();
021        }
022    
023        public void write_value(java.io.Serializable value, 
024                                org.omg.CORBA.portable.BoxedValueHelper factory) {
025            throw new org.omg.CORBA.NO_IMPLEMENT();
026        }
027    
028        public void write_abstract_interface(java.lang.Object object) {
029            throw new org.omg.CORBA.NO_IMPLEMENT();
030        }
031    
032    }