KickJava   Java API By Example, From Geeks To Geeks.

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


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