home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / RELEASE.ZIP / sub_arctic / anim / continuous_interval.java < prev    next >
Encoding:
Java Source  |  1996-10-04  |  1.6 KB  |  51 lines

  1. package sub_arctic.anim;
  2.  
  3. /**
  4.  * This is the type of class you construct for a permanent transition.
  5.  * This object has a start time, but no duration or stop time.<p>
  6.  *
  7.  * @author Ian Smith
  8.  */
  9. public class continuous_interval extends time_interval {
  10.  
  11.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  12.  
  13.   /**
  14.    * Construct a permanent time interval to begin at a given time.<p>
  15.    * 
  16.    * @param long start the start time
  17.    */
  18.   public continuous_interval(long start) {
  19.     super(); // we'll fill them in
  20.     set_start_time(start);
  21.   }
  22.  
  23.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  24.  
  25.   /**
  26.    * This type of object is always valid, since we require all the
  27.    * relevant fields at construction time.<p>
  28.    *
  29.    * @return boolean we always return true
  30.    */
  31.   public boolean valid() { return true;}
  32.  
  33.   /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */
  34. }
  35. /*=========================== COPYRIGHT NOTICE ===========================
  36.  
  37. This file is part of the subArctic user interface toolkit.
  38.  
  39. Copyright (c) 1996 Scott Hudson and Ian Smith
  40. All rights reserved.
  41.  
  42. The subArctic system is freely available for most uses under the terms
  43. and conditions described in 
  44.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  45. and appearing in full in the lib/interactor.java source file.
  46.  
  47. The current release and additional information about this software can be 
  48. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  49.  
  50. ========================================================================*/
  51.