home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cbclassinf.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  42 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbclassinf.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbclassinf.tcl    1.2   28 Jul 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cbtextlist.tcl"
  15.  
  16. Class CBClassInfoTextList : {CBTextList} {
  17.     constructor
  18.     method destructor
  19.     method initView
  20. }
  21.  
  22. constructor CBClassInfoTextList {class this name} {
  23.     set this [CBTextList::constructor $class $this $name]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method CBClassInfoTextList::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this CBTextList::destructor
  33. }
  34.  
  35. method CBClassInfoTextList::initView {this} {
  36.     $this removeTextListEntries
  37.     $this removeEntries
  38. }
  39.  
  40. # Do not delete this line -- regeneration end marker
  41.  
  42.