home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)lockbrobje.tcl /main/titanic/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)lockbrobje.tcl /main/titanic/2 2 Jul 1997 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 ldes} {
- set this [BrowsObject::constructor $class $this $name]
- $this lock [$ldes id]
- # Start constructor user section
-
- switch [$ldes types] {
- Read { $this smallIcon rep_rlock_16 }
- Write { $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
-
-