home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cachedrow.tcl < prev    next >
Text File  |  1996-06-11  |  2KB  |  61 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cachedrow.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cachedrow.tcl    /main/2   11 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cachedrowc.tcl"
  15.  
  16. Class CachedRow : {CachedRowCell Row} {
  17.     method destructor
  18.     constructor
  19.     method promoter
  20.     method getPropertyValue
  21.     method addCachedCell
  22.     method removeCachedCell
  23.     attribute cachedCellSet
  24. }
  25.  
  26. method CachedRow::destructor {this} {
  27.     # Start destructor user section
  28.     # End destructor user section
  29.     $this CachedRowCell::destructor
  30. }
  31.  
  32. constructor CachedRow {class this name_1 name} {
  33.     set this [Row::constructor $class $this $name]
  34.     set this [CachedRowCell::constructor $class $this $name_1]
  35.     $this cachedCellSet [List new]
  36.     # Start constructor user section
  37.     # End constructor user section
  38.     return $this
  39. }
  40.  
  41. method CachedRow::promoter {this items props} {
  42.     $this CachedRowCell::promoter $items $props
  43.     $this cachedCellSet [List new]
  44. }
  45.  
  46. method CachedRow::getPropertyValue {this name} {
  47.     return [$this CachedRowCell::getPropertyValue $name]
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52. method CachedRow::addCachedCell {this newCachedCell} {
  53.     [$this cachedCellSet] append $newCachedCell
  54.  
  55. }
  56.  
  57. method CachedRow::removeCachedCell {this oldCachedCell} {
  58.     [$this cachedCellSet] removeValue $oldCachedCell
  59. }
  60.  
  61.