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

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