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/IntervalT.java
download file

  1 package TimeBase;
  2
  3
  4 /** * TimeBase/IntervalT.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 IntervalT implements org.omg.CORBA.portable.IDLEntity
  7 {
  8   public long lower_bound = (long)0;
  9   public long upper_bound = (long)0;
 10
 11   public IntervalT ()
 12   {
 13   } // ctor
 14
 15   public IntervalT (long _lower_bound, long _upper_bound)
 16   {
 17     lower_bound = _lower_bound;
 18     upper_bound = _upper_bound;
 19   } // ctor
 20
 21 } // class IntervalT
 22