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

  1. #---------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software, Inc. 1996 
  4. #
  5. #      File:           htmldfdsecti.tcl    
  6. #      Description:    see Document Generation Guide     
  7. #---------------------------------------------------------------------
  8.  
  9. set user_dir /user/papr/icase                   
  10. # Change this variable setting
  11.  
  12. my_require "$user_dir/htmldiagrams.tcl"
  13.  
  14. Class HtmlDfdSection : {HtmlDiagramSection} {
  15.     constructor
  16.     method destructor
  17.     method promoter
  18. }
  19.  
  20. constructor HtmlDfdSection {class this name document} {
  21.     set this [HtmlDiagramSection::constructor $class $this $name $document]
  22.     # Start constructor user section
  23.     # End constructor user section
  24.     return $this
  25. }
  26.  
  27. method HtmlDfdSection::destructor {this} {
  28.     # Start destructor user section
  29.     # End destructor user section
  30.     $this HtmlDiagramSection::destructor
  31. }
  32.  
  33. method HtmlDfdSection::promoter {this document} {
  34.     $this HtmlDiagramSection::promoter $document
  35.  
  36.     $this uiType DFD
  37. }
  38.  
  39. # Do not delete this line -- regeneration end marker
  40.  
  41.