1 package gcc.org.omg.IIOP; 2 3 4 10 11 abstract public class BiDirIIOPServiceContextHelper 12 { 13 private static String _id = "IDL:omg.org/IIOP/BiDirIIOPServiceContext:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, gcc.org.omg.IIOP.BiDirIIOPServiceContext 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.IIOP.BiDirIIOPServiceContext 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 [1]; 44 org.omg.CORBA.TypeCode _tcOf_members0 = null; 45 _tcOf_members0 = gcc.org.omg.IIOP.ListenPointHelper.type (); 46 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0); 47 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (gcc.org.omg.IIOP.ListenPointListHelper.id (), "ListenPointList", _tcOf_members0); 48 _members0[0] = new org.omg.CORBA.StructMember ( 49 "listen_points", 50 _tcOf_members0, 51 null); 52 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (gcc.org.omg.IIOP.BiDirIIOPServiceContextHelper.id (), "BiDirIIOPServiceContext", _members0); 53 __active = false; 54 } 55 } 56 } 57 return __typeCode; 58 } 59 60 public static String id () 61 { 62 return _id; 63 } 64 65 public static gcc.org.omg.IIOP.BiDirIIOPServiceContext read (org.omg.CORBA.portable.InputStream istream) 66 { 67 gcc.org.omg.IIOP.BiDirIIOPServiceContext value = new gcc.org.omg.IIOP.BiDirIIOPServiceContext (); 68 value.listen_points = gcc.org.omg.IIOP.ListenPointListHelper.read (istream); 69 return value; 70 } 71 72 public static void write (org.omg.CORBA.portable.OutputStream ostream, gcc.org.omg.IIOP.BiDirIIOPServiceContext value) 73 { 74 gcc.org.omg.IIOP.ListenPointListHelper.write (ostream, value.listen_points); 75 } 76 77 } 78 | Popular Tags |