home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / revengada8.tcl < prev    next >
Text File  |  1997-11-28  |  1KB  |  54 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)revengada8.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)revengada8.tcl    /main/titanic/3   28 Nov 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "revengdlg.tcl"
  15.  
  16. global short2url
  17.  
  18. set short2url(reverseEngineerAda83)           IPL/db_rve_ada83.html
  19.  
  20. Class RevEngAda83Dlg : {RevEngDlg} {
  21.     method destructor
  22.     constructor
  23.     method getOptions
  24. }
  25.  
  26. method RevEngAda83Dlg::destructor {this} {
  27.     # Start destructor user section
  28.     # End destructor user section
  29.     $this RevEngDlg::destructor
  30. }
  31.  
  32. constructor RevEngAda83Dlg {class this name} {
  33.     set this [RevEngDlg::constructor $class $this $name "Ada83" "reveng_ada83"]
  34.  
  35.     interface CheckButton $this.top.association {
  36.         label "Reverse engineer associations"
  37.         state 1
  38.     }
  39.  
  40.     return $this
  41. }
  42.  
  43. method RevEngAda83Dlg::getOptions {this} {
  44.     set script [$this RevEngDlg::getOptions]
  45.         if [$this.top.association state] {
  46.                 append script " -a rev_assoc.tcl"
  47.         }
  48.  
  49.     return $script
  50. }
  51.  
  52. # Do not delete this line -- regeneration end marker
  53.  
  54.