KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.IOP;
2
3
4 /**
5 * org/omg/IOP/TaggedProfile.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 TaggedProfile implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13
14   /** The tag, represented as a profile id. */
15   public int tag = (int)0;
16
17   /** The associated profile data. */
18   public byte profile_data[] = null;
19
20   public TaggedProfile ()
21   {
22   } // ctor
23

24   public TaggedProfile (int _tag, byte[] _profile_data)
25   {
26     tag = _tag;
27     profile_data = _profile_data;
28   } // ctor
29

30 } // class TaggedProfile
31
Popular Tags