home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / un2maiq4 / pjjava / src / pj / awt / pjpagespec.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  1.8 KB  |  80 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.     @(#)PjPageSpec.java  0.00 05-Jan-96
  15.  
  16.         A specification for a page in Personal Journal notebook.
  17.  
  18.  
  19.     Authors:
  20.  
  21.         rphall      Rick Hall
  22.  
  23.  
  24.     Version Ident:
  25.  
  26.         $Header$
  27.  
  28.  
  29.     History:
  30.  
  31.         05-Jan-96    rphall      Initial Creation
  32.  
  33.  
  34. ---------------------------------------------------------------------------*/
  35.  
  36. package pj.awt;
  37.  
  38. import pj.awt.TabSpec;
  39.  
  40. import java.lang.Object;
  41. import java.lang.String;
  42.  
  43. /**
  44.  * A specification for a page in Personal Journal notebook.
  45.  * @version 0.00, 05-Jan-96
  46.  * @author     Rick Hall
  47.  */
  48. public class PjPageSpec
  49.     {
  50.  
  51.     // --- Instance variables
  52.  
  53.     /** Page name */
  54.     public String strPageName;
  55.  
  56.     /** Tab specification if page is a divider */
  57.     public TabSpec tabspec;
  58.  
  59.     /** View specification */
  60.     public Object viewspec;
  61.  
  62.     // --- Public constructors
  63.  
  64.     public PjPageSpec(
  65.             String  pageName,
  66.             TabSpec tabSpec,
  67.             Object  viewSpec)
  68.         {
  69.         strPageName = pageName;
  70.         tabspec = tabSpec;
  71.         viewspec = viewSpec;
  72.         }
  73.  
  74.     public PjPageSpec()
  75.         { 
  76.         this(null,null,null); 
  77.         }
  78.  
  79.     } // PjPageSpec
  80.