KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > GIOP > ReplyStatusType_1_2Helper


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/ReplyStatusType_1_2Helper.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from ../idl/GIOP.idl
8 * Wednesday, December 8, 2004 11:54:39 AM EST
9 */

10
11 abstract public class ReplyStatusType_1_2Helper
12 {
13   private static String JavaDoc _id = "IDL:omg.org/GIOP/ReplyStatusType_1_2:1.0";
14
15   public static void insert (org.omg.CORBA.Any JavaDoc a, gcc.org.omg.GIOP.ReplyStatusType_1_2 that)
16   {
17     org.omg.CORBA.portable.OutputStream JavaDoc out = a.create_output_stream ();
18     a.type (type ());
19     write (out, that);
20     a.read_value (out.create_input_stream (), type ());
21   }
22
23   public static gcc.org.omg.GIOP.ReplyStatusType_1_2 extract (org.omg.CORBA.Any JavaDoc a)
24   {
25     return read (a.create_input_stream ());
26   }
27
28   private static org.omg.CORBA.TypeCode JavaDoc __typeCode = null;
29   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
30   {
31     if (__typeCode == null)
32     {
33       __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (gcc.org.omg.GIOP.ReplyStatusType_1_2Helper.id (), "ReplyStatusType_1_2", new String JavaDoc[] { "NO_EXCEPTION", "USER_EXCEPTION", "SYSTEM_EXCEPTION", "LOCATION_FORWARD", "LOCATION_FORWARD_PERM", "NEEDS_ADDRESSING_MODE"} );
34     }
35     return __typeCode;
36   }
37
38   public static String JavaDoc id ()
39   {
40     return _id;
41   }
42
43   public static gcc.org.omg.GIOP.ReplyStatusType_1_2 read (org.omg.CORBA.portable.InputStream JavaDoc istream)
44   {
45     return gcc.org.omg.GIOP.ReplyStatusType_1_2.from_int (istream.read_long ());
46   }
47
48   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, gcc.org.omg.GIOP.ReplyStatusType_1_2 value)
49   {
50     ostream.write_long (value.value ());
51   }
52
53 }
54
Popular Tags