KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.sun.corba.se.spi.activation;
2
3
4 /**
5 * com/sun/corba/se/spi/activation/ServerIdHelper.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 abstract public class ServerIdHelper
12 {
13   private static String JavaDoc _id = "IDL:activation/ServerId:1.0";
14
15   public static void insert (org.omg.CORBA.Any JavaDoc a, int that)
16   {
17     org.omg.CORBA.portable.OutputStream JavaDoc 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 int extract (org.omg.CORBA.Any JavaDoc a)
24   {
25     return read (a.create_input_stream ());
26   }
27
28   private static org.omg.CORBA.TypeCode JavaDoc __typeCode = null;
29   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
30   {
31     if (__typeCode == null)
32     {
33       __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_long);
34       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.spi.activation.ServerIdHelper.id (), "ServerId", __typeCode);
35     }
36     return __typeCode;
37   }
38
39   public static String JavaDoc id ()
40   {
41     return _id;
42   }
43
44   public static int read (org.omg.CORBA.portable.InputStream JavaDoc istream)
45   {
46     int value = (int)0;
47     value = istream.read_long ();
48     return value;
49   }
50
51   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, int value)
52   {
53     ostream.write_long (value);
54   }
55
56 }
57
Popular Tags