home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1997 November
/
PCWorld_1997-11_cd.bin
/
software
/
programy
/
komix
/
DATA.Z
/
t_phase.tcl
< prev
next >
Wrap
Text File
|
1996-06-03
|
1KB
|
31 lines
#---------------------------------------------------------------------------
#
# (c) Cadre Technologies Inc. 1995
#
# File: %W%
# Author: Challenger
# Description: Implementation of old Report Writer table Phase
#
#---------------------------------------------------------------------------
# SccsId = %W% %G% Copyright 1995 Cadre Technologies Inc.
constructor PhaseRecord {class this configVersion phaseVersion} {
set this [GCObject::constructor $class $this]
set phase [$phaseVersion phase]
$this project_version [$configVersion versionNumber]
$this phase_id [$phase identity]
$this phase_version [$phaseVersion versionNumber]
$this name [$phase name]
$this workbench [$phase name]
$this working [expr {[$phaseVersion status] == "working"}]
$this status [expr { [$phaseVersion status] == "working"
? "Unfrozen" : "Frozen" }]
$this frz_time [fmtclock [$phaseVersion freezeTime] "%e-%h-%Y %X"]
$this comment [$phaseVersion comments]
return $this
}