sources:


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   public long lower_bound = (long)0;
  8   public long upper_bound = (long)0;
  9
 10   public IntervalT ()
 11   {
 12   } // ctor
 13
 14   public IntervalT (long _lower_bound, long _upper_bound)
 15   {
 16     lower_bound = _lower_bound;
 17     upper_bound = _upper_bound;
 18   } // ctor
 19
 20 } // class IntervalT
 21
 22