home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------
- #
- # (c) Cayenne Software, Inc. 1996
- #
- # File: htmldiagrams.tcl
- # Description: see Document Generation Guide
- #---------------------------------------------------------------------
-
- require diagramsec.tcl
-
- Class HtmlDiagramSection : {DiagramSection} {
- constructor
- method destructor
- method promoter
- method docType
- }
-
- constructor HtmlDiagramSection {class this name document} {
- set this [DiagramSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method HtmlDiagramSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this DiagramSection::destructor
- }
-
- method HtmlDiagramSection::promoter {this document} {
- $this extension eps
- $this DiagramSection::promoter $document
-
- $this operationClass import
- }
-
- method HtmlDiagramSection::docType {this} {
-
- # the type of this section in the document directory is Epsf
- return Epsi
- }
-
- # Do not delete this line -- regeneration end marker
-
-