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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtconfig.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtconfig.tcl    /main/titanic/4   4 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 "mtcontaine.tcl"
  15.  
  16. Class MTConfig : {MTContainer} {
  17.     constructor
  18.     method destructor
  19.     method associations
  20. }
  21.  
  22. constructor MTConfig {class this name fromRepObj toRepObj} {
  23.     set this [MTContainer::constructor $class $this $name $fromRepObj $toRepObj]
  24.     # Start constructor user section
  25.     $this setVersionableClass phaseVersions MTPhase
  26.     $this level Config
  27.     $this createConflictingObjects
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method MTConfig::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this MTContainer::destructor
  36. }
  37.  
  38. method MTConfig::associations {this} {
  39.     
  40.     # don't return 'customFileVersions' because they
  41.     # can't be merged (belongs to another 'view')
  42.     return phaseVersions
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.