1 package gcc.org.omg.IIOP; 2 3 4 10 11 abstract public class ListenPointListHelper 12 { 13 private static String _id = "IDL:omg.org/IIOP/ListenPointList:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, gcc.org.omg.IIOP.ListenPoint[] 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.ListenPoint[] 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 synchronized public static org.omg.CORBA.TypeCode type () 30 { 31 if (__typeCode == null) 32 { 33 __typeCode = gcc.org.omg.IIOP.ListenPointHelper.type (); 34 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode); 35 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (gcc.org.omg.IIOP.ListenPointListHelper.id (), "ListenPointList", __typeCode); 36 } 37 return __typeCode; 38 } 39 40 public static String id () 41 { 42 return _id; 43 } 44 45 public static gcc.org.omg.IIOP.ListenPoint[] read (org.omg.CORBA.portable.InputStream istream) 46 { 47 gcc.org.omg.IIOP.ListenPoint value[] = null; 48 int _len0 = istream.read_long (); 49 value = new gcc.org.omg.IIOP.ListenPoint[_len0]; 50 for (int _o1 = 0;_o1 < value.length; ++_o1) 51 value[_o1] = gcc.org.omg.IIOP.ListenPointHelper.read (istream); 52 return value; 53 } 54 55 public static void write (org.omg.CORBA.portable.OutputStream ostream, gcc.org.omg.IIOP.ListenPoint[] value) 56 { 57 ostream.write_long (value.length); 58 for (int _i0 = 0;_i0 < value.length; ++_i0) 59 gcc.org.omg.IIOP.ListenPointHelper.write (ostream, value[_i0]); 60 } 61 62 } 63 | Popular Tags |