1 package com.sun.corba.se.PortableActivationIDL; 2 3 4 10 11 abstract public class ORBPortInfoHelper 12 { 13 private static String _id = "IDL:PortableActivationIDL/ORBPortInfo:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, com.sun.corba.se.PortableActivationIDL.ORBPortInfo 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 com.sun.corba.se.PortableActivationIDL.ORBPortInfo 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 ().create_string_tc (0); 46 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.PortableInterceptor.ORBIdHelper.id (), "ORBId", _tcOf_members0); 47 _members0[0] = new org.omg.CORBA.StructMember ( 48 "orbId", 49 _tcOf_members0, 50 null); 51 _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_long); 52 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.PortableActivationIDL.TCPPortHelper.id (), "TCPPort", _tcOf_members0); 53 _members0[1] = new org.omg.CORBA.StructMember ( 54 "port", 55 _tcOf_members0, 56 null); 57 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (com.sun.corba.se.PortableActivationIDL.ORBPortInfoHelper.id (), "ORBPortInfo", _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 com.sun.corba.se.PortableActivationIDL.ORBPortInfo read (org.omg.CORBA.portable.InputStream istream) 71 { 72 com.sun.corba.se.PortableActivationIDL.ORBPortInfo value = new com.sun.corba.se.PortableActivationIDL.ORBPortInfo (); 73 value.orbId = istream.read_string (); 74 value.port = istream.read_long (); 75 return value; 76 } 77 78 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.corba.se.PortableActivationIDL.ORBPortInfo value) 79 { 80 ostream.write_string (value.orbId); 81 ostream.write_long (value.port); 82 } 83 84 } 85 | Popular Tags |