1 package gcc.org.omg.GIOP; 2 3 4 10 11 12 abstract public class SystemExceptionReplyBodyHelper 14 { 15 private static String _id = "IDL:omg.org/GIOP/SystemExceptionReplyBody:1.0"; 16 17 public static void insert (org.omg.CORBA.Any a, gcc.org.omg.GIOP.SystemExceptionReplyBody 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.SystemExceptionReplyBody 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 [3]; 46 org.omg.CORBA.TypeCode _tcOf_members0 = null; 47 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0); 48 _members0[0] = new org.omg.CORBA.StructMember ( 49 "exception_id", 50 _tcOf_members0, 51 null); 52 _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong); 53 _members0[1] = new org.omg.CORBA.StructMember ( 54 "minor_code_value", 55 _tcOf_members0, 56 null); 57 _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong); 58 _members0[2] = new org.omg.CORBA.StructMember ( 59 "completion_status", 60 _tcOf_members0, 61 null); 62 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (gcc.org.omg.GIOP.SystemExceptionReplyBodyHelper.id (), "SystemExceptionReplyBody", _members0); 63 __active = false; 64 } 65 } 66 } 67 return __typeCode; 68 } 69 70 public static String id () 71 { 72 return _id; 73 } 74 75 public static gcc.org.omg.GIOP.SystemExceptionReplyBody read (org.omg.CORBA.portable.InputStream istream) 76 { 77 gcc.org.omg.GIOP.SystemExceptionReplyBody value = new gcc.org.omg.GIOP.SystemExceptionReplyBody (); 78 value.exception_id = istream.read_string (); 79 value.minor_code_value = istream.read_ulong (); 80 value.completion_status = istream.read_ulong (); 81 return value; 82 } 83 84 public static void write (org.omg.CORBA.portable.OutputStream ostream, gcc.org.omg.GIOP.SystemExceptionReplyBody value) 85 { 86 ostream.write_string (value.exception_id); 87 ostream.write_ulong (value.minor_code_value); 88 ostream.write_ulong (value.completion_status); 89 } 90 91 } 92 | Popular Tags |