-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathEncoding.java
More file actions
40 lines (31 loc) · 905 Bytes
/
Copy pathEncoding.java
File metadata and controls
40 lines (31 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package org.omg.IOP;
/**
* org/omg/IOP/Encoding.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u77/6540/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
* Sunday, March 20, 2016 10:01:25 PM PDT
*/
public final class Encoding implements org.omg.CORBA.portable.IDLEntity
{
/**
* The encoding format.
*/
public short format = (short)0;
/**
* The major version of this Encoding format.
*/
public byte major_version = (byte)0;
/**
* The minor version of this Encoding format.
*/
public byte minor_version = (byte)0;
public Encoding ()
{
} // ctor
public Encoding (short _format, byte _major_version, byte _minor_version)
{
format = _format;
major_version = _major_version;
minor_version = _minor_version;
} // ctor
} // class Encoding