sources:
InaccuracyTHelper.java (1.6k)
IntervalT.java (554 bytes)
IntervalTHelper.java (2.8k)
IntervalTHolder.java (807 bytes)
TimeTHelper.java (1.4k)
UtcT.java (593 bytes)
UtcTHelper.java (2.9k)
UtcTHolder.java (762 bytes)


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 {
  8   public long time = (long)0;
  9
 10   // 8 octets
 11   public int inacclo = (int)0;
 12
 13   // 4 octets
 14   public short inacchi = (short)0;
 15
 16   public UtcT ()
 17   {
 18   } // ctor
 19
 20   public UtcT (long _time, int _inacclo, short _inacchi)
 21   {
 22     time = _time;
 23     inacclo = _inacclo;
 24     inacchi = _inacchi;
 25   } // ctor
 26
 27 } // class UtcT
 28