home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)extlcldbob.tcl 1.3
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)extlcldbob.tcl 1.3 12 Feb 1996 Copyright 1996 Cadre Technologies Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "clistobj.tcl"
-
- Class ExtLCLDbObj : {CListObj ExternalLinkList} {
- method destructor
- constructor
- }
-
- method ExtLCLDbObj::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this CListObj::destructor
- }
-
- constructor ExtLCLDbObj {class this name} {
- set this [ExternalLinkList::constructor $class $this $name]
- set this [CListObj::constructor $class $this $name]
- return $this
- }
-
- selfPromoter ExternalLinkList {this} {
- ExtLCLDbObj promote $this
- }
-
- proc ExtLCLDbObj::associations {} {
- return [CListObj::associations]
- }
-
- proc ExtLCLDbObj::childTypes {assoc} {
- return [CListObj::childTypes $assoc]
- }
-
- proc ExtLCLDbObj::controlledLists {} {
- return [CListObj::controlledLists]
- }
-
- proc ExtLCLDbObj::infoProperties {} {
- return [CListObj::infoProperties]
- }
-
- # Do not delete this line -- regeneration end marker
-
-