home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / un2maiq4 / pjjava / src / pj / io / downlo~1.jav next >
Encoding:
Text File  |  1996-08-14  |  1.6 KB  |  59 lines

  1. /*---------------------------------------------------------------------------
  2.  
  3.     Written by the Personal Journal developers of Dow Jones & Company, Inc.
  4.  
  5.     Dow Jones makes no representations or warranties about 
  6.     the suitability of this software, either express or 
  7.     implied, including but not limited to the implied warranties 
  8.     of merchantability, fitness for a particular purpose, 
  9.     or non-infringement.  Dow Jones will not be liable for 
  10.     any damages suffered by a user as a result of using, 
  11.     modifying or distributing this software or its derivatives.
  12.  
  13.  
  14.  
  15.     @(#)DownloadProgressNotification.java   0.00 20-Dec-95
  16.  
  17.         A token passed to an observer of a StoryContainer whenever a new
  18.         story is added.
  19.  
  20.     Authors:
  21.  
  22.         jlee      James Lee
  23.  
  24.  
  25.     Version Ident:
  26.  
  27.         $Header$
  28.  
  29.  
  30.     History:
  31.  
  32.         21-mar-96    jlee      Initial Creation
  33.  
  34. ---------------------------------------------------------------------------*/
  35.  
  36. package pj.io;
  37.  
  38. import pj.io.StoryContainer;
  39.  
  40. public class DownloadProgressNotification 
  41.     {
  42.  
  43.     // --- Instance variables
  44.  
  45.     public StoryContainer source;     // The SC that sent the token
  46.     public String         strSubsect; // The subsect of the SC
  47.     public int            newState;   // The new state of the SC
  48.  
  49.     // --- Public constructor
  50.  
  51.     public DownloadProgressNotification( StoryContainer o, String subsect, int state )
  52.         {
  53.         source = o;
  54.         strSubsect = subsect;
  55.         newState = state;
  56.         }
  57.  
  58.     }; // DownloadProgressNotification
  59.