sources:


website:
more info here
studies/corba/Corba-Code1/client/TimeBase/UtcT.java
download file

  1 package TimeBase;
  2
  3
  4 /** * TimeBase/UtcT.java . * Generated by the IDL-to-Java compiler (portable), version "3.1" * from time.idl * Freitag, 18. April 2003 11.06 Uhr CEST */
  5
  6 public final class UtcT implements org.omg.CORBA.portable.IDLEntity {
  7   public long time = (long)0;
  8
  9   // 8 octets
 10   public int inacclo = (int)0;
 11
 12   // 4 octets
 13   public short inacchi = (short)0;
 14
 15   public UtcT ()
 16   {
 17   } // ctor
 18
 19   public UtcT (long _time, int _inacclo, short _inacchi)
 20   {
 21     time = _time;
 22     inacclo = _inacclo;
 23     inacchi = _inacchi;
 24   } // ctor
 25
 26 } // class UtcT
 27
 28