KickJava   Java API By Example, From Geeks To Geeks.

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


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/ReplyHeader_1_0.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
12 // GIOP 1.0
13
public final class ReplyHeader_1_0 implements org.omg.CORBA.portable.IDLEntity JavaDoc
14 {
15
16   // Renamed from ReplyHeader
17
public gcc.org.omg.IOP.ServiceContext service_context[] = null;
18   public int request_id = (int)0;
19   public gcc.org.omg.GIOP.ReplyStatusType_1_2 reply_status = null;
20
21   public ReplyHeader_1_0 ()
22   {
23   } // ctor
24

25   public ReplyHeader_1_0 (gcc.org.omg.IOP.ServiceContext[] _service_context, int _request_id, gcc.org.omg.GIOP.ReplyStatusType_1_2 _reply_status)
26   {
27     service_context = _service_context;
28     request_id = _request_id;
29     reply_status = _reply_status;
30   } // ctor
31

32 } // class ReplyHeader_1_0
33
Popular Tags