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