KickJava   Java API By Example, From Geeks To Geeks.

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


1 package gcc.org.omg.GIOP;
2
3
4 /**
5 * gcc/org/omg/GIOP/IORAddressingInfo.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 public final class IORAddressingInfo implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13   public int selected_profile_index = (int)0;
14   public gcc.org.omg.IOP.IOR ior = null;
15
16   public IORAddressingInfo ()
17   {
18   } // ctor
19

20   public IORAddressingInfo (int _selected_profile_index, gcc.org.omg.IOP.IOR _ior)
21   {
22     selected_profile_index = _selected_profile_index;
23     ior = _ior;
24   } // ctor
25

26 } // class IORAddressingInfo
27
Popular Tags