KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.omg.IOP;
2
3
4 /**
5 * org/omg/IOP/Encoding.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:05 AM GMT
9 */

10
11 public final class Encoding implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13
14   /**
15      * The encoding format.
16      */

17   public short format = (short)0;
18
19   /**
20      * The major version of this Encoding format.
21      */

22   public byte major_version = (byte)0;
23
24   /**
25      * The minor version of this Encoding format.
26      */

27   public byte minor_version = (byte)0;
28
29   public Encoding ()
30   {
31   } // ctor
32

33   public Encoding (short _format, byte _major_version, byte _minor_version)
34   {
35     format = _format;
36     major_version = _major_version;
37     minor_version = _minor_version;
38   } // ctor
39

40 } // class Encoding
41
Popular Tags