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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)propifpare.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)propifpare.tcl    1.2   01 Feb 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "propinterf.tcl"
  15.  
  16. Class PropIfParent : {PropInterface} {
  17.     constructor
  18.     method destructor
  19.     method childSet
  20.     method addChild
  21.     method removeChild
  22.     attribute _childSet
  23. }
  24.  
  25. constructor PropIfParent {class this} {
  26.     set this [PropInterface::constructor $class $this]
  27.     $this _childSet [List new]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method PropIfParent::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this PropInterface::destructor
  37. }
  38.  
  39. # Do not delete this line -- regeneration end marker
  40.  
  41. method PropIfParent::childSet {this} {
  42.     return [$this _childSet]
  43. }
  44.  
  45. method PropIfParent::addChild {this newChild} {
  46.     [$this _childSet] append $newChild
  47.     $newChild _parent $this
  48. }
  49.  
  50. method PropIfParent::removeChild {this oldChild} {
  51.     $oldChild _parent ""
  52.     [$this _childSet] removeValue $oldChild
  53. }
  54.  
  55.