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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ccsysversi.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ccsysversi.tcl    /main/titanic/5   6 Jun 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "ccsystem.tcl" clearcase
  15. require_module_file "vssystemve.tcl" vcm
  16.  
  17. # This class represents a ClearCase aware system
  18. # for code generation.
  19.  
  20. Class CCSysVersion : {CCSystem VSSystemVersion} {
  21.     constructor
  22.     method destructor
  23.     method promoteFile
  24.     method promoter
  25.     method path
  26.     method localFileVersions
  27. }
  28.  
  29. constructor CCSysVersion {class this name} {
  30.     set this [CCSystem::constructor $class $this $name]
  31.     set this [VSSystemVersion::constructor $class $this $name]
  32.     # Start constructor user section
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method CCSysVersion::destructor {this} {
  38.     # Start destructor user section
  39.     # End destructor user section
  40.     $this CCSystem::destructor
  41.     $this VSSystemVersion::destructor
  42. }
  43.  
  44. selfPromoter SystemVersion {this} {
  45.     CCSysVersion promote $this
  46. }
  47.  
  48.  
  49. # Promote file to a CCFileLink.
  50. #
  51. method CCSysVersion::promoteFile {this file} {
  52.     CCFileLink promote $file
  53. }
  54.  
  55.  
  56. # Call promoter in VSSystemVersion.
  57. #
  58. method CCSysVersion::promoter {this} {
  59.     $this VSSystemVersion::promoter
  60. }
  61.  
  62.  
  63. # Call path of CCSystem.
  64. #
  65. method CCSysVersion::path {this} {
  66.     return [$this CCSystem::path]
  67. }
  68.  
  69.  
  70. # Resolve ambiguity: call localFileVersions of CCSystem.
  71. #
  72. method CCSysVersion::localFileVersions {this} {
  73.     return [$this CCSystem::localFileVersions]
  74. }
  75.  
  76. # Do not delete this line -- regeneration end marker
  77.