home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / un2maiq4 / pjjava / src / pj / awt / sectionview.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  1.9 KB  |  67 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.     @(#)SectionView.java  0.00 22-Jan-96
  15.  
  16.         A Section that implements PaperView.
  17.  
  18.     Authors:
  19.  
  20.         rphall   Rick Hall
  21.  
  22.     Version Ident:
  23.  
  24.         $Header: /PjJavaClient/src/pj/awt/SectionView.java 1     1/23/96 3:38p Rphall $
  25.  
  26.     History:
  27.  
  28.         0.00 22-Jan-96  rphall      Initial Creation
  29.         0.01 23-Feb-96  Ted S.      Changes for PaperView interface changes.
  30.                                     This class is obsolete because Page now
  31.                                     implements nextView()  etc.  This has got
  32.                                     to be chopped out. Will I get to it? maybe.
  33.  
  34. ---------------------------------------------------------------------------*/
  35.  
  36. package pj.awt;
  37.  
  38. import pj.awt.PaperView;
  39. import pj.awt.Section;
  40. import pj.awt.TabSpec;
  41.  
  42. /**
  43.  * A Section that implements PaperView.
  44.  *
  45.  * @see PaperView
  46.  * @version 0.00 22-Jan-96
  47.  * @author  rphall
  48. */
  49. //public abstract class SectionView extends Section 
  50. public class SectionView extends Section
  51.     {
  52.  
  53.     // --- Public constructors
  54.  
  55.     /**
  56.      * Construct a SectionView with a given tab specification.
  57.      * @param tab   A specification for the tab that should be
  58.      * associated with this page.
  59.     */
  60.     public SectionView(TabSpec tab)
  61.         { 
  62.         super(tab); 
  63.         }
  64.  
  65.  
  66.     } // SectionView
  67.