home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / reqreporte.tcl < prev    next >
Text File  |  1997-08-29  |  3KB  |  80 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)reqreporte.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)reqreporte.tcl    /main/titanic/2   29 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "reqdriver.tcl"
  15.  
  16. Class ReqReporter : {ReqDriver} {
  17.     constructor
  18.     method destructor
  19.     method applyToLevel
  20. }
  21.  
  22. constructor ReqReporter {class this} {
  23.     set this [ReqDriver::constructor $class $this]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method ReqReporter::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this ReqDriver::destructor
  33. }
  34.  
  35. method ReqReporter::applyToLevel {this objTeamObjs operation dxlCommandRef {arg1 ""} {arg2 ""}} {
  36.     upvar $dxlCommandRef dxlCommand
  37.         set orgOperation $operation
  38.     
  39.         set corporate [$this corporate]
  40.         set project [$this project]
  41.         set configV [$this configV]
  42.         set phaseV [$this phaseV]
  43.         set systemV [$this systemV]
  44.         set fileV [$this fileV]
  45.  
  46.         $this applyToMultiple $project $corporate $operation dxlCommand $arg1 $arg2 
  47.  
  48.         set currentLevel $phaseV
  49.         set parentLevel $configV
  50.         $this applyToMultiple $phaseV $configV $operation dxlCommand $arg1 $arg2 
  51.  
  52.         if ![$systemV isNil] {
  53.         set currentLevel $systemV
  54.         set parentLevel $phaseV
  55.         $this applyToMultiple $systemV $phaseV $operation dxlCommand $arg1 $arg2 
  56.         }
  57.  
  58.         if ![$fileV isNil] {
  59.         set currentLevel $fileV
  60.         set parentLevel $systemV
  61.         $this applyToMultiple $fileV $systemV $operation dxlCommand $arg1 $arg2 
  62.         }
  63.  
  64.         if { $arg2 == "Objects"} {
  65.         $this applyToMultiple $objTeamObjs $parentLevel showSMObjects dxlCommand $arg1 $arg2 
  66.         }
  67.          if {$arg2 == "ClassFeatures"} {
  68.         $this applyToMultiple $objTeamObjs $parentLevel showClassFeatures dxlCommand $arg1 $arg2 
  69.         }
  70.  
  71.         if {$objTeamObjs == $currentLevel } {
  72.         $this applyRecursive $objTeamObjs $parentLevel $operation dxlCommand $arg1 $arg2 ""
  73.         } else {
  74.         $this applyRecursive $objTeamObjs $currentLevel $operation dxlCommand $arg1 $arg2 ""
  75.         }
  76. }
  77.  
  78. # Do not delete this line -- regeneration end marker
  79.  
  80.