1 package org.omg.CosNaming; 2 3 4 10 11 12 15 abstract public class BindingListHelper 16 { 17 private static String _id = "IDL:omg.org/CosNaming/BindingList:1.0"; 18 19 public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.Binding [] that) 20 { 21 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 22 a.type (type ()); 23 write (out, that); 24 a.read_value (out.create_input_stream (), type ()); 25 } 26 27 public static org.omg.CosNaming.Binding [] extract (org.omg.CORBA.Any a) 28 { 29 return read (a.create_input_stream ()); 30 } 31 32 private static org.omg.CORBA.TypeCode __typeCode = null; 33 synchronized public static org.omg.CORBA.TypeCode type () 34 { 35 if (__typeCode == null) 36 { 37 __typeCode = org.omg.CosNaming.BindingHelper.type (); 38 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode); 39 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.CosNaming.BindingListHelper.id (), "BindingList", __typeCode); 40 } 41 return __typeCode; 42 } 43 44 public static String id () 45 { 46 return _id; 47 } 48 49 public static org.omg.CosNaming.Binding [] read (org.omg.CORBA.portable.InputStream istream) 50 { 51 org.omg.CosNaming.Binding value[] = null; 52 int _len0 = istream.read_long (); 53 value = new org.omg.CosNaming.Binding [_len0]; 54 for (int _o1 = 0;_o1 < value.length; ++_o1) 55 value[_o1] = org.omg.CosNaming.BindingHelper.read (istream); 56 return value; 57 } 58 59 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.Binding [] value) 60 { 61 ostream.write_long (value.length); 62 for (int _i0 = 0;_i0 < value.length; ++_i0) 63 org.omg.CosNaming.BindingHelper.write (ostream, value[_i0]); 64 } 65 66 } 67 | Popular Tags |