home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / chkcomodel.tcl < prev    next >
Text File  |  1997-09-05  |  750b  |  22 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)chkcomodel.tcl    /main/titanic/1
  6. #      Author:         heli
  7. #      Description:    Check Collaboration Model
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)chkcomodel.tcl    /main/titanic/1 5 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. proc checkCollaborationModel {{codNames {}}} {
  12.     uplevel #0 {
  13.     OTShRegister::semanticModel
  14.     require chktcl_msg.tcl
  15.     require chkcom.tcl
  16.     }
  17.     set cc [ClientContext::global]
  18.     set model [CMCodModel new [$cc currentConfig] [$cc currentPhase]]
  19.     $model mcheck $codNames
  20.     $model delete
  21. }
  22.