home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)cbtlentry.tcl 1.3
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)cbtlentry.tcl 1.3 19 Oct 1995 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
-
- Class CBTLEntry : {Object} {
- constructor
- method destructor
- method compareName
- method getClassBrowser
- method open
- method showScope
- method editCAD
- attribute formattedText
- }
-
- constructor CBTLEntry {class this name} {
- set this [Object::constructor $class $this $name]
- $this formattedText ""
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method CBTLEntry::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
- proc CBTLEntry::compare {a b} {
- return [$a compareName $b]
- }
-
- method CBTLEntry::compareName {this other} {
- return 0
- }
-
- method CBTLEntry::getClassBrowser {this} {
- global classBrowser
- return $classBrowser
- }
-
- method CBTLEntry::open {this} {
- [[$this getClassBrowser] openHandler] handle $this
- }
-
- method CBTLEntry::showScope {this} {
- [[$this getClassBrowser] showScopeHandler] handle $this
- }
-
- method CBTLEntry::editCAD {this} {
- [[$this getClassBrowser] editCADHandler] handle $this
- }
-
- # Do not delete this line -- regeneration end marker
-
-