KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > activation > ORBidHelper


1 package com.sun.corba.se.spi.activation;
2
3
4 /**
5 * com/sun/corba/se/spi/activation/ORBidHelper.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 * Saturday, February 9, 2008 2:04:39 AM PST
9 */

10
11
12 // issue resolved.
13
abstract public class ORBidHelper
14 {
15   private static String JavaDoc _id = "IDL:activation/ORBid:1.0";
16
17   public static void insert (org.omg.CORBA.Any JavaDoc a, String JavaDoc that)
18   {
19     org.omg.CORBA.portable.OutputStream JavaDoc out = a.create_output_stream ();
20     a.type (type ());
21     write (out, that);
22     a.read_value (out.create_input_stream (), type ());
23   }
24
25   public static String JavaDoc extract (org.omg.CORBA.Any JavaDoc a)
26   {
27     return read (a.create_input_stream ());
28   }
29
30   private static org.omg.CORBA.TypeCode JavaDoc __typeCode = null;
31   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
32   {
33     if (__typeCode == null)
34     {
35       __typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
36       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.spi.activation.ORBidHelper.id (), "ORBid", __typeCode);
37     }
38     return __typeCode;
39   }
40
41   public static String JavaDoc id ()
42   {
43     return _id;
44   }
45
46   public static String JavaDoc read (org.omg.CORBA.portable.InputStream JavaDoc istream)
47   {
48     String JavaDoc value = null;
49     value = istream.read_string ();
50     return value;
51   }
52
53   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, String JavaDoc value)
54   {
55     ostream.write_string (value);
56   }
57
58 }
59
Popular Tags