1 package org.omg.CosNaming.NamingContextExtPackage; 2 3 4 10 11 12 16 abstract public class URLStringHelper 17 { 18 private static String _id = "IDL:omg.org/CosNaming/NamingContextExt/URLString:1.0"; 19 20 public static void insert (org.omg.CORBA.Any a, String 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 String 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_string_tc (0); 39 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.CosNaming.NamingContextExtPackage.URLStringHelper.id (), "URLString", __typeCode); 40 } 41 return __typeCode; 42 } 43 44 public static String id () 45 { 46 return _id; 47 } 48 49 public static String read (org.omg.CORBA.portable.InputStream istream) 50 { 51 String value = null; 52 value = istream.read_string (); 53 return value; 54 } 55 56 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) 57 { 58 ostream.write_string (value); 59 } 60 61 } 62 | Popular Tags |