1 package org.omg.CosNaming; 2 3 4 10 11 12 16 abstract public class BindingTypeHelper 17 { 18 private static String _id = "IDL:omg.org/CosNaming/BindingType:1.0"; 19 20 public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.BindingType that) 21 { 22 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 23 a.type (type ()); 24 write (out, that); 25 a.read_value (out.create_input_stream (), type ()); 26 } 27 28 public static org.omg.CosNaming.BindingType extract (org.omg.CORBA.Any a) 29 { 30 return read (a.create_input_stream ()); 31 } 32 33 private static org.omg.CORBA.TypeCode __typeCode = null; 34 synchronized public static org.omg.CORBA.TypeCode type () 35 { 36 if (__typeCode == null) 37 { 38 __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (org.omg.CosNaming.BindingTypeHelper.id (), "BindingType", new String [] { "nobject", "ncontext"} ); 39 } 40 return __typeCode; 41 } 42 43 public static String id () 44 { 45 return _id; 46 } 47 48 public static org.omg.CosNaming.BindingType read (org.omg.CORBA.portable.InputStream istream) 49 { 50 return org.omg.CosNaming.BindingType.from_int (istream.read_long ()); 51 } 52 53 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.BindingType value) 54 { 55 ostream.write_long (value.value ()); 56 } 57 58 } 59 | Popular Tags |