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 >
Wrap
Text File
|
1996-06-11
|
2KB
|
61 lines
#---------------------------------------------------------------------------
#
# (c) Cadre Technologies Inc. 1996
#
# File: @(#)cachedrow.tcl /main/2
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)cachedrow.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 CachedRow : {CachedRowCell Row} {
method destructor
constructor
method promoter
method getPropertyValue
method addCachedCell
method removeCachedCell
attribute cachedCellSet
}
method CachedRow::destructor {this} {
# Start destructor user section
# End destructor user section
$this CachedRowCell::destructor
}
constructor CachedRow {class this name_1 name} {
set this [Row::constructor $class $this $name]
set this [CachedRowCell::constructor $class $this $name_1]
$this cachedCellSet [List new]
# Start constructor user section
# End constructor user section
return $this
}
method CachedRow::promoter {this items props} {
$this CachedRowCell::promoter $items $props
$this cachedCellSet [List new]
}
method CachedRow::getPropertyValue {this name} {
return [$this CachedRowCell::getPropertyValue $name]
}
# Do not delete this line -- regeneration end marker
method CachedRow::addCachedCell {this newCachedCell} {
[$this cachedCellSet] append $newCachedCell
}
method CachedRow::removeCachedCell {this oldCachedCell} {
[$this cachedCellSet] removeValue $oldCachedCell
}