001 package org.omg.TimeBase;
002
003 /**
004 * Generated from IDL struct "IntervalT".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:27 AM
008 */
009
010 public final class IntervalT
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public IntervalT(){}
014 public long lower_bound;
015 public long upper_bound;
016 public IntervalT(long lower_bound, long upper_bound)
017 {
018 this.lower_bound = lower_bound;
019 this.upper_bound = upper_bound;
020 }
021 }