1 package org.omg.CORBA; 2 3 4 10 11 12 20 abstract public class ParameterModeHelper 21 { 22 private static String _id = "IDL:omg.org/CORBA/ParameterMode:1.0"; 23 24 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.ParameterMode 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.ParameterMode 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.ORB.init ().create_enum_tc (org.omg.CORBA.ParameterModeHelper.id (), "ParameterMode", new String [] { "PARAM_IN", "PARAM_OUT", "PARAM_INOUT"} ); 43 } 44 return __typeCode; 45 } 46 47 public static String id () 48 { 49 return _id; 50 } 51 52 public static org.omg.CORBA.ParameterMode read (org.omg.CORBA.portable.InputStream istream) 53 { 54 return org.omg.CORBA.ParameterMode.from_int (istream.read_long ()); 55 } 56 57 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ParameterMode value) 58 { 59 ostream.write_long (value.value ()); 60 } 61 62 } 63 | Popular Tags |