KickJava   Java API By Example, From Geeks To Geeks.

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


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/ReplyHeader_1_2.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:40 AM EST
9 */

10
11 public final class ReplyHeader_1_2 implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13   public int request_id = (int)0;
14   public gcc.org.omg.GIOP.ReplyStatusType_1_2 reply_status = null;
15   public gcc.org.omg.IOP.ServiceContext service_context[] = null;
16
17   public ReplyHeader_1_2 ()
18   {
19   } // ctor
20

21   public ReplyHeader_1_2 (int _request_id, gcc.org.omg.GIOP.ReplyStatusType_1_2 _reply_status, gcc.org.omg.IOP.ServiceContext[] _service_context)
22   {
23     request_id = _request_id;
24     reply_status = _reply_status;
25     service_context = _service_context;
26   } // ctor
27

28 } // class ReplyHeader_1_2
29
Popular Tags