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

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