home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)docstructp.tcl 1.6
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)docstructp.tcl 1.6 01 Feb 1996 Copyright 1996 Cadre Technologies Inc.
-
- # Start user added include file section
- # End user added include file section
-
-
- Class DocStructPart : {Object} {
- method destructor
- constructor
- attribute sectionName
- attribute sectionType
- attribute sectionClass
- attribute levelDelta
- attribute documentVersion
- attribute structureGenerator
- attribute contentsGenerator
- attribute initContents
- attribute fileVersion
- attribute workItem
- attribute propertyNames
- }
-
- method DocStructPart::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
- constructor DocStructPart {class this spec} {
-
- set name [lindex $spec 0]
- regsub -all " |\t" $name "" name
- set this [Object::constructor $class $this $name]
-
- $this sectionName [lindex $spec 0]
- $this levelDelta [lindex $spec 1]
- $this sectionType [lindex $spec 3]
- $this structureGenerator [lindex $spec 2]
- $this contentsGenerator [lindex $spec 4]
- $this initContents [lindex $spec 5]
- $this fileVersion [lindex $spec 6]
- $this workItem [lindex $spec 7]
- $this propertyNames [lindex $spec 8]
- $this sectionClass [lindex $spec 9]
- $this documentVersion [lindex $spec 10]
-
- return $this
- }
-
- # Do not delete this line -- regeneration end marker
-
-