home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / opendefobj.tcl < prev    next >
Text File  |  1997-03-14  |  2KB  |  58 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)opendefobj.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)opendefobj.tcl    /main/titanic/1   14 Mar 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "custdefsob.tcl"
  15.  
  16. Class OpenDefObject : {CustDefsObject} {
  17.     constructor
  18.     method destructor
  19.     method updateView
  20.     method infoList
  21. }
  22.  
  23. constructor OpenDefObject {class this name specification} {
  24.     set this [CustDefsObject::constructor $class $this $name $specification]
  25.     # Start constructor user section
  26.     $this conversionSet "OPENSTGDEF id"
  27.     $this id $this
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method OpenDefObject::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this CustDefsObject::destructor
  36. }
  37.  
  38. method OpenDefObject::updateView {this} {
  39.     if [$this editable] {
  40.         set level "[$this specLevel] *"
  41.     } else {
  42.         set level [$this specLevel]
  43.     }
  44.  
  45.     $this label [$this name]
  46.     $this details [list [$this type] \
  47.                 $level]
  48. }
  49.  
  50. method OpenDefObject::infoList {this} {
  51.     return [list Name [$this name] \
  52.              Type [$this type] \
  53.              {Specification Level} [$this specLevel]]
  54. }
  55.  
  56. # Do not delete this line -- regeneration end marker
  57.  
  58.