/[classpath]/classpath/org/omg/PortableServer/POAHelper.java
ViewVC logotype

Diff of /classpath/org/omg/PortableServer/POAHelper.java

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

revision 1.2 by audriusa, Wed Jul 27 15:58:29 2005 UTC revision 1.3 by audriusa, Tue Oct 4 17:58:16 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package org.omg.PortableServer;  package org.omg.PortableServer;
40    
41    import gnu.CORBA.Minor;
42    
43  import org.omg.CORBA.BAD_PARAM;  import org.omg.CORBA.BAD_PARAM;
44  import org.omg.CORBA.TypeCode;  import org.omg.CORBA.TypeCode;
45  import org.omg.CORBA.ORB;  import org.omg.CORBA.ORB;
# Line 126  public abstract class POAHelper Line 128  public abstract class POAHelper
128     */     */
129    public static POA read(InputStream input)    public static POA read(InputStream input)
130    {    {
131      throw new MARSHAL("Not applicable");      MARSHAL m = new MARSHAL("Inappropriate");
132        m.minor = Minor.Inappropriate;
133        throw m;
134    }    }
135    
136    /**    /**
# Line 142  public abstract class POAHelper Line 146  public abstract class POAHelper
146     */     */
147    public static void write(OutputStream output, POA value)    public static void write(OutputStream output, POA value)
148    {    {
149      throw new MARSHAL("Not applicable");      MARSHAL m = new MARSHAL("Inappropriate");
150        m.minor = Minor.Inappropriate;
151        throw m;
152    }    }
153  }  }

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

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