1 package org.omg.mof.Model; 2 3 4 10 11 abstract public class BooleanListHelper 12 { 13 private static String _id = "IDL:org/omg/mof/Model/BooleanList:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, boolean[] 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 boolean[] 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 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_boolean); 34 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode); 35 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.mof.Model.BooleanListHelper.id (), "BooleanList", __typeCode); 36 } 37 return __typeCode; 38 } 39 40 public static String id () 41 { 42 return _id; 43 } 44 45 public static boolean[] read (org.omg.CORBA.portable.InputStream istream) 46 { 47 boolean value[] = null; 48 int _len0 = istream.read_long (); 49 value = new boolean[_len0]; 50 istream.read_boolean_array (value, 0, _len0); 51 return value; 52 } 53 54 public static void write (org.omg.CORBA.portable.OutputStream ostream, boolean[] value) 55 { 56 ostream.write_long (value.length); 57 ostream.write_boolean_array (value, 0, value.length); 58 } 59 60 } 61 | Popular Tags |