home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cbassociat.tcl < prev    next >
Text File  |  1997-09-03  |  1KB  |  60 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cbassociat.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbassociat.tcl    /main/titanic/1   3 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cbtlentry.tcl"
  15.  
  16. Class CBAssociation : {CBTLEntry} {
  17.     constructor
  18.     method destructor
  19.     method multKindToString
  20. }
  21.  
  22. constructor CBAssociation {class this name} {
  23.     set this [CBTLEntry::constructor $class $this $name]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method CBAssociation::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this CBTLEntry::destructor
  33. }
  34.  
  35. method CBAssociation::multKindToString {this multKind constraint} {
  36.     if [$classBrowser umlLook] {
  37.         #if {$constraint != ""} {
  38.         #    return "$constraint"
  39.         #}
  40.         if {$multKind == "many"} {
  41.             return "*"
  42.         } elseif {$multKind == "optional"} {
  43.             return "0..1"
  44.         } else {
  45.             return "1"
  46.         }
  47.     } else {
  48.         if {$multKind == "many"} {
  49.             return "*"
  50.         }
  51.         if {$multKind == "optional"} {
  52.             return "o"
  53.         }
  54.         return "-"
  55.     }
  56. }
  57.  
  58. # Do not delete this line -- regeneration end marker
  59.  
  60.