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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cachedcell.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cachedcell.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 CachedCell : {Cell CachedRowCell} {
  17.     method destructor
  18.     constructor
  19.     method promoter
  20.     method getPropertyValue
  21. }
  22.  
  23. method CachedCell::destructor {this} {
  24.     # Start destructor user section
  25.     # End destructor user section
  26.     $this CachedRowCell::destructor
  27. }
  28.  
  29. constructor CachedCell {class this name_1 name} {
  30.     set this [CachedRowCell::constructor $class $this $name]
  31.     set this [Cell::constructor $class $this $name_1]
  32.     # Start constructor user section
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method CachedCell::promoter {this items props} {
  38.     $this CachedRowCell::promoter $items $props
  39. }
  40.  
  41. method CachedCell::getPropertyValue {this name} {
  42.     return [$this CachedRowCell::getPropertyValue $name]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.