home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1996
- #
- # File: @(#)revengada83.tcl /main/hindenburg/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)revengada83.tcl /main/hindenburg/2 4 Sep 1996 Copyright 1996 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "revengdlg.tcl"
-
- global short2url
-
- set short2url(reverseEngineerAda83) IPL/db_rve_ada83.html
-
- Class RevEngAda83Dlg : {RevEngDlg} {
- method destructor
- constructor
- method getOptions
- }
-
- method RevEngAda83Dlg::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this RevEngDlg::destructor
- }
-
- constructor RevEngAda83Dlg {class this name} {
- set this [RevEngDlg::constructor $class $this $name "Ada83" "reveng_ada83"]
-
- interface CheckButton $this.top.association {
- label "Reverse engineer associations"
- state 1
- }
-
- return $this
- }
-
- method RevEngAda83Dlg::getOptions {this} {
- set script [$this RevEngDlg::getOptions]
- if [$this.top.association state] {
- append script " -a rev_assoc.tcl"
- }
-
- return $script
- }
-
- # Do not delete this line -- regeneration end marker
-
-