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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)drsphaseob.tcl    /main/hindenburg/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)drsphaseob.tcl    /main/hindenburg/5   4 Feb 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "drslevelob.tcl"
  15. require "drssmmodel.tcl"
  16.  
  17. #Class DrsPhaseObject : {DrsSMModelObject DrsLevelObject} {
  18. #    method destructor
  19. #    constructor
  20. #    method childLevelVersions
  21. #    method getChildLevels
  22. #    method getPhase
  23. #    method show
  24. #}
  25.  
  26. method DrsPhaseObject::destructor {this} {
  27.     # Start destructor user section
  28.     # End destructor user section
  29.     $this DrsSMModelObject::destructor
  30.     $this DrsLevelObject::destructor
  31. }
  32.  
  33. constructor DrsPhaseObject {class this phase levelV pLevel pLevelV} {
  34.     set this [DrsSMModelObject::constructor $class $this [$phase phaseVersions]]
  35.     set this [DrsLevelObject::constructor $class $this $phase $levelV $pLevel $pLevelV]
  36.     $this childLevels [$phase systems]
  37.         $this levelVersions [$phase phaseVersions]
  38.     return $this
  39. }
  40.  
  41. method DrsPhaseObject::childLevelVersions {this} {
  42.     set versOfCurrLevel [[$this level] phaseVersions]
  43.     set thisPhaseVers [searchOnVersion $versOfCurrLevel [$this versionId]]
  44.     return [$thisPhaseVers systemVersions]
  45. }
  46.  
  47.  
  48. method DrsPhaseObject::getPhase {this} {
  49.     return [$this level]
  50. }
  51.  
  52.  
  53. # Do not delete this line -- regeneration end marker
  54.  
  55.