KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.sun.corba.se.spi.activation;
2
3
4 /**
5 * com/sun/corba/se/spi/activation/ORBidListHelper.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 ORBidListHelper
12 {
13   private static String JavaDoc _id = "IDL:activation/ORBidList:1.0";
14
15   public static void insert (org.omg.CORBA.Any JavaDoc a, String JavaDoc[] 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 String JavaDoc[] 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 ().create_string_tc (0);
34       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.spi.activation.ORBidHelper.id (), "ORBid", __typeCode);
35       __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
36       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.spi.activation.ORBidListHelper.id (), "ORBidList", __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     int _len0 = istream.read_long ();
50     value = new String JavaDoc[_len0];
51     for (int _o1 = 0;_o1 < value.length; ++_o1)
52       value[_o1] = com.sun.corba.se.spi.activation.ORBidHelper.read (istream);
53     return value;
54   }
55
56   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, String JavaDoc[] value)
57   {
58     ostream.write_long (value.length);
59     for (int _i0 = 0;_i0 < value.length; ++_i0)
60       com.sun.corba.se.spi.activation.ORBidHelper.write (ostream, value[_i0]);
61   }
62
63 }
64
Popular Tags