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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtphase.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtphase.tcl    /main/titanic/5   12 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 "mtcontaine.tcl"
  15.  
  16. Class MTPhase : {MTContainer} {
  17.     constructor
  18.     method destructor
  19.     method associations
  20.     method getOwners
  21. }
  22.  
  23. constructor MTPhase {class this name fromRepObj toRepObj} {
  24.     set this [MTContainer::constructor $class $this $name $fromRepObj $toRepObj]
  25.     # Start constructor user section
  26.     if [.main import] {
  27.         $this setVersionableClass systemOnlyVersions MTSystem
  28.     } else {
  29.         $this setVersionableClass systemVersions MTSystem
  30.     }
  31.     $this selectFlag phaseVersion
  32.     $this level Phase
  33.     $this createConflictingObjects
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method MTPhase::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41.     $this MTContainer::destructor
  42. }
  43.  
  44. method MTPhase::associations {this} {
  45.     if [.main import] {
  46.         return {systemOnlyVersions customFileVersions}
  47.     } else {
  48.         return {systemVersions customFileVersions}
  49.     }
  50. }
  51.  
  52. method MTPhase::getOwners {this} {
  53.     
  54.     set owners ""
  55.     lappend owners [[$this fromRepObj] configVersions]
  56.     if {[$this toRepObj] != ""} {
  57.         lappend owners [[$this toRepObj] configVersions]
  58.     } else {
  59.         lappend owners {}
  60.     }
  61.     return $owners
  62. }
  63.  
  64. # Do not delete this line -- regeneration end marker
  65.  
  66.