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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cadfeature.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cadfeature.tcl    /main/2   11 Jun 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 CADFeature : {CADCDMComp} {
  17.     method destructor
  18.     constructor
  19.     method getMatrixComponent
  20.     method theClass
  21.     attribute row
  22.     attribute _theClass
  23. }
  24.  
  25. method CADFeature::destructor {this} {
  26.     # Start destructor user section
  27.     # End destructor user section
  28.     $this CADCDMComp::destructor
  29. }
  30.  
  31. constructor CADFeature {class this theClass row} {
  32.     set this [CADCDMComp::constructor $class $this]
  33.     $this _theClass $theClass
  34.     [$theClass _featureSet] append $this
  35.     $this row $row
  36.     # Start constructor user section
  37.     # End constructor user section
  38.     return $this
  39. }
  40.  
  41. method CADFeature::getMatrixComponent {this} {
  42.     return [$this row]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47. method CADFeature::theClass {this args} {
  48.     if {$args == ""} {
  49.         return [$this _theClass]
  50.     }
  51.     set ref [$this _theClass]
  52.     if {$ref != ""} {
  53.         [$ref _featureSet] removeValue $this
  54.     }
  55.     set obj [lindex $args 0]
  56.     if {$obj != ""} {
  57.         [$obj _featureSet] append $this
  58.     }
  59.     $this _theClass $obj
  60. }
  61.  
  62.