1 package gcc.org.omg.GIOP; 2 3 4 10 11 abstract public class LocateReplyHeader_1_2Helper 12 { 13 private static String _id = "IDL:omg.org/GIOP/LocateReplyHeader_1_2:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, gcc.org.omg.GIOP.LocateReplyHeader_1_2 that) 16 { 17 org.omg.CORBA.portable.OutputStream 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.LocateReplyHeader_1_2 extract (org.omg.CORBA.Any a) 24 { 25 return read (a.create_input_stream ()); 26 } 27 28 private static org.omg.CORBA.TypeCode __typeCode = null; 29 private static boolean __active = false; 30 synchronized public static org.omg.CORBA.TypeCode type () 31 { 32 if (__typeCode == null) 33 { 34 synchronized (org.omg.CORBA.TypeCode .class) 35 { 36 if (__typeCode == null) 37 { 38 if (__active) 39 { 40 return org.omg.CORBA.ORB.init().create_recursive_tc ( _id ); 41 } 42 __active = true; 43 org.omg.CORBA.StructMember [] _members0 = new org.omg.CORBA.StructMember [2]; 44 org.omg.CORBA.TypeCode _tcOf_members0 = null; 45 _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong); 46 _members0[0] = new org.omg.CORBA.StructMember ( 47 "request_id", 48 _tcOf_members0, 49 null); 50 _tcOf_members0 = gcc.org.omg.GIOP.LocateStatusType_1_2Helper.type (); 51 _members0[1] = new org.omg.CORBA.StructMember ( 52 "locate_status", 53 _tcOf_members0, 54 null); 55 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (gcc.org.omg.GIOP.LocateReplyHeader_1_2Helper.id (), "LocateReplyHeader_1_2", _members0); 56 __active = false; 57 } 58 } 59 } 60 return __typeCode; 61 } 62 63 public static String id () 64 { 65 return _id; 66 } 67 68 public static gcc.org.omg.GIOP.LocateReplyHeader_1_2 read (org.omg.CORBA.portable.InputStream istream) 69 { 70 gcc.org.omg.GIOP.LocateReplyHeader_1_2 value = new gcc.org.omg.GIOP.LocateReplyHeader_1_2 (); 71 value.request_id = istream.read_ulong (); 72 value.locate_status = gcc.org.omg.GIOP.LocateStatusType_1_2Helper.read (istream); 73 return value; 74 } 75 76 public static void write (org.omg.CORBA.portable.OutputStream ostream, gcc.org.omg.GIOP.LocateReplyHeader_1_2 value) 77 { 78 ostream.write_ulong (value.request_id); 79 gcc.org.omg.GIOP.LocateStatusType_1_2Helper.write (ostream, value.locate_status); 80 } 81 82 } 83 | Popular Tags |