home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / htmldiagrams.tcl < prev    next >
Text File  |  1996-12-05  |  1KB  |  46 lines

  1. #---------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software, Inc. 1996 
  4. #
  5. #      File:           htmldiagrams.tcl    
  6. #      Description:    see Document Generation Guide     
  7. #---------------------------------------------------------------------
  8.  
  9. require diagramsec.tcl
  10.  
  11. Class HtmlDiagramSection : {DiagramSection} {
  12.     constructor
  13.     method destructor
  14.     method promoter
  15.     method docType
  16. }
  17.  
  18. constructor HtmlDiagramSection {class this name document} {
  19.     set this [DiagramSection::constructor $class $this $name $document]
  20.     # Start constructor user section
  21.     # End constructor user section
  22.     return $this
  23. }
  24.  
  25. method HtmlDiagramSection::destructor {this} {
  26.     # Start destructor user section
  27.     # End destructor user section
  28.     $this DiagramSection::destructor
  29. }
  30.  
  31. method HtmlDiagramSection::promoter {this document} {
  32.     $this extension eps
  33.     $this DiagramSection::promoter $document
  34.  
  35.     $this operationClass import
  36. }
  37.  
  38. method HtmlDiagramSection::docType {this} {
  39.  
  40.     # the type of this section in the document directory is Epsf
  41.     return Epsi
  42. }
  43.  
  44. # Do not delete this line -- regeneration end marker
  45.  
  46.