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