1. package org.omg.IOP;
  2. /**
  3. * org/omg/IOP/Encoding.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.2"
  5. * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
  6. * Wednesday, September 15, 2004 10:28:42 AM GMT
  7. */
  8. public final class Encoding implements org.omg.CORBA.portable.IDLEntity
  9. {
  10. /**
  11. * The encoding format.
  12. */
  13. public short format = (short)0;
  14. /**
  15. * The major version of this Encoding format.
  16. */
  17. public byte major_version = (byte)0;
  18. /**
  19. * The minor version of this Encoding format.
  20. */
  21. public byte minor_version = (byte)0;
  22. public Encoding ()
  23. {
  24. } // ctor
  25. public Encoding (short _format, byte _major_version, byte _minor_version)
  26. {
  27. format = _format;
  28. major_version = _major_version;
  29. minor_version = _minor_version;
  30. } // ctor
  31. } // class Encoding