KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > IIOP > ListenPointHelper


1 package gcc.org.omg.IIOP;
2
3
4 /**
5 * gcc/org/omg/IIOP/ListenPointHelper.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.1"
7 * from ../idl/IIOP.idl
8 * Wednesday, December 8, 2004 11:54:42 AM EST
9 */

10
11
12 // BiDirectional IIOP
13
abstract public class ListenPointHelper
14 {
15   private static String JavaDoc _id = "IDL:omg.org/IIOP/ListenPoint:1.0";
16
17   public static void insert (org.omg.CORBA.Any JavaDoc a, gcc.org.omg.IIOP.ListenPoint 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 gcc.org.omg.IIOP.ListenPoint 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   private static boolean __active = false;
32   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
33   {
34     if (__typeCode == null)
35     {
36       synchronized (org.omg.CORBA.TypeCode JavaDoc.class)
37       {
38         if (__typeCode == null)
39         {
40           if (__active)
41           {
42             return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
43           }
44           __active = true;
45           org.omg.CORBA.StructMember JavaDoc[] _members0 = new org.omg.CORBA.StructMember JavaDoc [2];
46           org.omg.CORBA.TypeCode JavaDoc _tcOf_members0 = null;
47           _tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
48           _members0[0] = new org.omg.CORBA.StructMember JavaDoc (
49             "host",
50             _tcOf_members0,
51             null);
52           _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ushort);
53           _members0[1] = new org.omg.CORBA.StructMember JavaDoc (
54             "port",
55             _tcOf_members0,
56             null);
57           __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (gcc.org.omg.IIOP.ListenPointHelper.id (), "ListenPoint", _members0);
58           __active = false;
59         }
60       }
61     }
62     return __typeCode;
63   }
64
65   public static String JavaDoc id ()
66   {
67     return _id;
68   }
69
70   public static gcc.org.omg.IIOP.ListenPoint read (org.omg.CORBA.portable.InputStream JavaDoc istream)
71   {
72     gcc.org.omg.IIOP.ListenPoint value = new gcc.org.omg.IIOP.ListenPoint ();
73     value.host = istream.read_string ();
74     value.port = istream.read_ushort ();
75     return value;
76   }
77
78   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, gcc.org.omg.IIOP.ListenPoint value)
79   {
80     ostream.write_string (value.host);
81     ostream.write_ushort (value.port);
82   }
83
84 }
85
Popular Tags