home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1997 November
/
PCWorld_1997-11_cd.bin
/
software
/
programy
/
komix
/
DATA.Z
/
lockbrobje.tcl
< prev
next >
Wrap
Text File
|
1996-09-05
|
1KB
|
43 lines
#---------------------------------------------------------------------------
#
# (c) Cadre Technologies Inc. 1996
#
# File: @(#)lockbrobje.tcl /main/hindenburg/3
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)lockbrobje.tcl /main/hindenburg/3 5 Sep 1996 Copyright 1996 Cadre Technologies Inc.
# Start user added include file section
# End user added include file section
Class LockBrObject : {BrowsObject} {
constructor
method destructor
attribute lock
}
constructor LockBrObject {class this name lock} {
set this [BrowsObject::constructor $class $this $name]
$this lock $lock
# Start constructor user section
switch [$lock type] {
readLock { $this smallIcon rep_rlock_16 }
writeLock { $this smallIcon rep_wlock_16 }
default { $this smallIcon rep_clock_16 }
}
# End constructor user section
return $this
}
method LockBrObject::destructor {this} {
# Start destructor user section
# End destructor user section
}
# Do not delete this line -- regeneration end marker