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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtgroup.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtgroup.tcl    /main/titanic/3   18 Nov 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "mtversion.tcl"
  15.  
  16. Class MTGroup : {MTVersion} {
  17.     constructor
  18.     method destructor
  19.     method associations
  20.     method level
  21.     method getOwners
  22. }
  23.  
  24. constructor MTGroup {class this name fromRepObj toRepObj} {
  25.     set this [MTVersion::constructor $class $this $name $fromRepObj $toRepObj]
  26.     # Start constructor user section
  27.     $this selectFlag groupVersion
  28.     $this copyCommand "SystemVersion::copy -groupVersion"
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method MTGroup::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this MTVersion::destructor
  37. }
  38.  
  39. method MTGroup::associations {this} {
  40.     return {}
  41. }
  42.  
  43. method MTGroup::level {this} {
  44.     # return the customization level,
  45.     return [[$this parent] level]
  46. }
  47.  
  48. method MTGroup::getOwners {this} {
  49.     set owners ""
  50.     lappend owners [[$this fromRepObj] systemVersions]
  51.     if {[$this toRepObj] != ""} {
  52.         lappend owners [[$this toRepObj] systemVersions]
  53.     } else {
  54.         lappend owners {}
  55.     }
  56.     return $owners
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61.