KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > mof > Model > AnySetHelper


1 package org.omg.mof.Model;
2
3
4 /**
5 * org/omg/mof/Model/AnySetHelper.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from mof1.idl
8 * lundi 17 mars 2003 15 h 01 CET
9 */

10
11
12 //
13
abstract public class AnySetHelper
14 {
15   private static String JavaDoc _id = "IDL:org/omg/mof/Model/AnySet:1.0";
16
17   public static void insert (org.omg.CORBA.Any JavaDoc a, org.omg.CORBA.Any 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 org.omg.CORBA.Any 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 ().get_primitive_tc (org.omg.CORBA.TCKind.tk_any);
36       __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
37       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.mof.Model.AnySetHelper.id (), "AnySet", __typeCode);
38     }
39     return __typeCode;
40   }
41
42   public static String JavaDoc id ()
43   {
44     return _id;
45   }
46
47   public static org.omg.CORBA.Any JavaDoc[] read (org.omg.CORBA.portable.InputStream JavaDoc istream)
48   {
49     org.omg.CORBA.Any JavaDoc value[] = null;
50     int _len0 = istream.read_long ();
51     value = new org.omg.CORBA.Any JavaDoc[_len0];
52     for (int _o1 = 0;_o1 < value.length; ++_o1)
53       value[_o1] = istream.read_any ();
54     return value;
55   }
56
57   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, org.omg.CORBA.Any JavaDoc[] value)
58   {
59     ostream.write_long (value.length);
60     for (int _i0 = 0;_i0 < value.length; ++_i0)
61       ostream.write_any (value[_i0]);
62   }
63
64 }
65
Popular Tags