home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------
- #
- # (c) Cayenne Software, Inc. 1996
- #
- # File: htmlsection.tcl
- # Description: see Document Generation Guide
- #---------------------------------------------------------------------
-
- require "localsecti.tcl"
-
- Class HtmlSection : {LocalSection} {
- constructor
- method destructor
- method promoter
- method edit
- method show
- method preview
- }
-
- constructor HtmlSection {class this name document} {
- set this [LocalSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method HtmlSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this LocalSection::destructor
- }
-
- method HtmlSection::promoter {this document} {
- $this DocSection::promoter $document
- $this FileVObj::promoter
-
- $this operationClass manipulate
- }
-
- method HtmlSection::edit {this} {
-
- # edit with the document editor command
- [[$this document] editor] edit $this
- }
-
- method HtmlSection::show {this} {
-
- # show with the document editor command
- [[$this document] editor] show $this
- }
-
- method HtmlSection::preview {this} {
-
- # preview with the document editor command
- [[$this document] editor] preview $this
- }
-
- # Do not delete this line -- regeneration end marker
-
-