KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > IOP > IOR


1 package org.omg.IOP;
2
3
4 /**
5 * org/omg/IOP/IOR.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 * Saturday, February 9, 2008 9:40:04 AM GMT
9 */

10
11 public final class IOR implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13
14   /** The type id, represented as a String. */
15   public String JavaDoc type_id = null;
16
17   /**
18      * An array of tagged profiles associated with this
19      * object reference.
20      */

21   public org.omg.IOP.TaggedProfile JavaDoc profiles[] = null;
22
23   public IOR ()
24   {
25   } // ctor
26

27   public IOR (String JavaDoc _type_id, org.omg.IOP.TaggedProfile JavaDoc[] _profiles)
28   {
29     type_id = _type_id;
30     profiles = _profiles;
31   } // ctor
32

33 } // class IOR
34
Popular Tags