home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)epsisectio.tcl 1.7
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)epsisectio.tcl 1.7 19 Jan 1996 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
- require "pssection.tcl"
-
- Class EpsiSection : {PsSection} {
- constructor
- method destructor
- method promoter
- method preview
- }
-
- constructor EpsiSection {class this name document} {
- set this [PsSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method EpsiSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this PsSection::destructor
- }
-
- method EpsiSection::promoter {this document} {
- $this PsSection::promoter $document
-
- $this uiType EPSI
- }
-
- method EpsiSection::preview {this} {
-
- set cmd [list \
- "previewer EpsiSection" \
- [$this docLocation] \
- [$this uiName] \
- ]
- $this execute "$cmd" m4
- }
-
- # Do not delete this line -- regeneration end marker
-
-