home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)cbassociat.tcl 1.2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)cbassociat.tcl 1.2 28 Jul 1995 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
- require "cbtlentry.tcl"
-
- Class CBAssociation : {CBTLEntry} {
- constructor
- method destructor
- }
-
- constructor CBAssociation {class this name} {
- set this [CBTLEntry::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method CBAssociation::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this CBTLEntry::destructor
- }
-
- proc CBAssociation::multKindToString {multKind} {
- if {$multKind == "many"} {
- return "*"
- }
- if {$multKind == "optional"} {
- return "o"
- }
- return "-"
- }
-
- # Do not delete this line -- regeneration end marker
-
-