KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gcc > org > omg > GIOP > RequestHeader_1_3Helper


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

10
11
12 // GIOP 1.3
13
abstract public class RequestHeader_1_3Helper
14 {
15   private static String JavaDoc _id = "IDL:omg.org/GIOP/RequestHeader_1_3:1.0";
16
17   public static void insert (org.omg.CORBA.Any JavaDoc a, gcc.org.omg.GIOP.RequestHeader_1_2 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.GIOP.RequestHeader_1_2 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 = gcc.org.omg.GIOP.RequestHeader_1_2Helper.type ();
36       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (gcc.org.omg.GIOP.RequestHeader_1_3Helper.id (), "RequestHeader_1_3", __typeCode);
37     }
38     return __typeCode;
39   }
40
41   public static String JavaDoc id ()
42   {
43     return _id;
44   }
45
46   public static gcc.org.omg.GIOP.RequestHeader_1_2 read (org.omg.CORBA.portable.InputStream JavaDoc istream)
47   {
48     gcc.org.omg.GIOP.RequestHeader_1_2 value = null;
49     value = gcc.org.omg.GIOP.RequestHeader_1_2Helper.read (istream);
50     return value;
51   }
52
53   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, gcc.org.omg.GIOP.RequestHeader_1_2 value)
54   {
55     gcc.org.omg.GIOP.RequestHeader_1_2Helper.write (ostream, value);
56   }
57
58 }
59
Popular Tags