home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
contsysver.tcl
< prev
next >
Wrap
Text File
|
1997-06-06
|
2KB
|
77 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)contsysver.tcl /main/titanic/5
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)contsysver.tcl /main/titanic/5 6 Jun 1997 Copyright 1997 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require_module_file "contsystem.tcl" continuus
require_module_file "vssystemve.tcl" vcm
# This class represnts a Continuus aware system for code generation.
Class ContSysVersion : {ContSystem VSSystemVersion} {
constructor
method destructor
method promoteFile
method promoter
method path
method localFileVersions
}
constructor ContSysVersion {class this name} {
set this [ContSystem::constructor $class $this $name]
set this [VSSystemVersion::constructor $class $this $name]
# Start constructor user section
# End constructor user section
return $this
}
method ContSysVersion::destructor {this} {
# Start destructor user section
# End destructor user section
$this ContSystem::destructor
$this VSSystemVersion::destructor
}
selfPromoter SystemVersion {this} {
ContSysVersion promote $this
}
# Promote file to a ContFileLink.
#
method ContSysVersion::promoteFile {this file} {
ContFileLink promote $file
}
# Call promoter in VSSystemVersion
#
method ContSysVersion::promoter {this} {
$this VSSystemVersion::promoter
}
# Call path of ContSystem
#
method ContSysVersion::path {this} {
return [$this ContSystem::path]
}
# Resolve ambiguity: call localFileVersions of ContSystem.
#
method ContSysVersion::localFileVersions {this} {
return [$this ContSystem::localFileVersions]
}
# Do not delete this line -- regeneration end marker