home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)cachedcell.tcl /main/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)cachedcell.tcl /main/2 11 Jun 1996 Copyright 1996 Cadre Technologies Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "cachedrowc.tcl"
-
- Class CachedCell : {Cell CachedRowCell} {
- method destructor
- constructor
- method promoter
- method getPropertyValue
- }
-
- method CachedCell::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this CachedRowCell::destructor
- }
-
- constructor CachedCell {class this name_1 name} {
- set this [CachedRowCell::constructor $class $this $name]
- set this [Cell::constructor $class $this $name_1]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method CachedCell::promoter {this items props} {
- $this CachedRowCell::promoter $items $props
- }
-
- method CachedCell::getPropertyValue {this name} {
- return [$this CachedRowCell::getPropertyValue $name]
- }
-
- # Do not delete this line -- regeneration end marker
-
-