/[classpath]/classpath/org/omg/CORBA/portable/OutputStream.java
ViewVC logotype

Diff of /classpath/org/omg/CORBA/portable/OutputStream.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mkoch, Sun Mar 13 11:20:17 2005 UTC revision 1.4 by audriusa, Tue May 17 08:29:44 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package org.omg.CORBA.portable;  package org.omg.CORBA.portable;
40    
 import java.math.BigDecimal;  
   
41  import org.omg.CORBA.Any;  import org.omg.CORBA.Any;
42  import org.omg.CORBA.Context;  import org.omg.CORBA.Context;
43  import org.omg.CORBA.ContextList;  import org.omg.CORBA.ContextList;
# Line 48  import org.omg.CORBA.ORB; Line 46  import org.omg.CORBA.ORB;
46  import org.omg.CORBA.Principal;  import org.omg.CORBA.Principal;
47  import org.omg.CORBA.TypeCode;  import org.omg.CORBA.TypeCode;
48    
49    import java.io.IOException;
50    
51    import java.math.BigDecimal;
52    
53  /**  /**
54   * This class is used to write CORBA IDL data types.   * This class is used to write CORBA IDL data types.
55   *   *
# Line 73  public abstract class OutputStream Line 75  public abstract class OutputStream
75    }    }
76    
77    /**    /**
78     * Should write an integer to the output stream, but,     * Should write an byte (lower 8 bits) to the output stream, but,
79     * following specification, it does not and     * following specification, it does not and
80     * must be overridden to get a functionality.     * must be overridden to get a functionality.
81     *     *
82     * @param n an integer to write.     * @param n an integer to write.
83     *     *
84     * @throws NO_IMPLEMENT, always.     * @throws NO_IMPLEMENT, always.
85       * @throws IOException in overriden methods.
86     */     */
87    public void write(int n)    public void write(int n)
88                 throws IOException
89    {    {
90      throw new NO_IMPLEMENT();      throw new NO_IMPLEMENT();
91    }    }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26