home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / msumleleme.tcl < prev    next >
Text File  |  1997-08-29  |  2KB  |  62 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)msumleleme.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)msumleleme.tcl    /main/titanic/2   29 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. #require "msumlnamed.tcl"
  15.  
  16. Class MSUMLElement : {MSUMLNamedObject} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method package
  21.     attribute _package
  22. }
  23.  
  24. constructor MSUMLElement {class this typeName} {
  25.     set this [MSUMLNamedObject::constructor $class $this $typeName]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method MSUMLElement::destructor {this} {
  32.     set ref [$this _package]
  33.     if {$ref != ""} {
  34.         [$ref _elementSet] removeValue $this
  35.     }
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this MSUMLNamedObject::destructor
  39. }
  40.  
  41. method MSUMLElement::promoter {this} {
  42.     $this MSUMLNamedObject::promoter
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47. method MSUMLElement::package {this args} {
  48.     if {$args == ""} {
  49.         return [$this _package]
  50.     }
  51.     set ref [$this _package]
  52.     if {$ref != ""} {
  53.         [$ref _elementSet] removeValue $this
  54.     }
  55.     set obj [lindex $args 0]
  56.     if {$obj != ""} {
  57.         [$obj _elementSet] append $this
  58.     }
  59.     $this _package $obj
  60. }
  61.  
  62.