home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cadparamet.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  62 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cadparamet.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cadparamet.tcl    1.3   31 Jan 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cadcdmcomp.tcl"
  15.  
  16. Class CADParameter : {CADCDMComp} {
  17.     constructor
  18.     method destructor
  19.     method getMatrixComponent
  20.     method method
  21.     attribute cell
  22.     attribute _method
  23. }
  24.  
  25. constructor CADParameter {class this cell method} {
  26.     set this [CADCDMComp::constructor $class $this]
  27.     $this cell $cell
  28.     $this _method $method
  29.     [$method _parameterSet] append $this
  30.     # Start constructor user section
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method CADParameter::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this CADCDMComp::destructor
  39. }
  40.  
  41. method CADParameter::getMatrixComponent {this} {
  42.     return [$this cell]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47. method CADParameter::method {this args} {
  48.     if {$args == ""} {
  49.         return [$this _method]
  50.     }
  51.     set ref [$this _method]
  52.     if {$ref != ""} {
  53.         [$ref _parameterSet] removeValue $this
  54.     }
  55.     set obj [lindex $args 0]
  56.     if {$obj != ""} {
  57.         [$obj _parameterSet] append $this
  58.     }
  59.     $this _method $obj
  60. }
  61.  
  62.