home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / contobjnam.tcl < prev    next >
Text File  |  1997-03-18  |  2KB  |  55 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)contobjnam.tcl    /main/hindenburg/2
  6. #      Author:         <generated>
  7. #      Description:    VCM integration file
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)contobjnam.tcl    /main/hindenburg/2   18 Mar 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "vsobjnamec.tcl"
  15.  
  16. Class ContObjNameChangeDialog : {VSObjNameChangeDialog} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method initializeVCMVars
  21. }
  22.  
  23. constructor ContObjNameChangeDialog {class this name tool} {
  24.     set this [VSObjNameChangeDialog::constructor $class $this $name $tool]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method ContObjNameChangeDialog::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this VSObjNameChangeDialog::destructor
  34. }
  35.  
  36.  
  37. # Sets vsSystem to ContSystem.
  38. #
  39. method ContObjNameChangeDialog::promoter {this} {
  40.     $this vsSystem ContSystem
  41. }
  42.  
  43.  
  44. # Initalizes Continuus variables if necessary.
  45. #
  46. method ContObjNameChangeDialog::initializeVCMVars {this} {
  47.     global ContCommand::ccmWorkArea
  48.     if { ${ContCommand::ccmWorkArea} == "" } {
  49.         return [ContCommand::initializeCcmVars]
  50.     }
  51.     return 1
  52. }
  53.  
  54. # Do not delete this line -- regeneration end marker
  55.