home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1995
- #
- # File: %W%
- # Author: Challenger
- # Description: Implementation of old Report Writer table Project
- #
- #---------------------------------------------------------------------------
- # SccsId = %W% %G% Copyright 1995 Cadre Technologies Inc.
-
-
- constructor ProjectRecord {class this configVersion} {
- set this [GCObject::constructor $class $this]
-
- set project [$configVersion project]
- set corporate [$project corporate]
-
- $this project_id [$project identity]
- $this project_version [$configVersion versionNumber]
- $this name [$project name]
- $this home [$corporate location]
- $this pdb_name [$corporate databaseName]
- $this pdb_host [$corporate databaseServer]
- $this tdb_name "unknown"
- $this tdb_host "unknown"
- $this product "OMT 4.0"
- $this working [expr { [$configVersion status] == "working"}]
- $this status [expr { [$configVersion status] == "working"
- ? "Unfrozen" : "Frozen" }]
- $this frz_time [fmtclock [$configVersion freezeTime] "%e-%h-%Y %X"]
- $this comment [$configVersion comments]
-
- return $this
- }
-