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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)propinterf.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)propinterf.tcl    /main/2   5 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class PropInterface : {GCObject} {
  16.     constructor
  17.     method destructor
  18.     method parent
  19.     attribute _parent
  20.     attribute ifElement
  21.     attribute definition
  22. }
  23.  
  24. constructor PropInterface {class this} {
  25.     set this [GCObject::constructor $class $this]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method PropInterface::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34. }
  35.  
  36. # Do not delete this line -- regeneration end marker
  37.  
  38. method PropInterface::parent {this args} {
  39.     if {$args == ""} {
  40.         return [$this _parent]
  41.     }
  42.     set ref [$this _parent]
  43.     if {$ref != ""} {
  44.         [$ref _childSet] removeValue $this
  45.     }
  46.     set obj [lindex $args 0]
  47.     if {$obj != ""} {
  48.         [$obj _childSet] append $this
  49.     }
  50.     $this _parent $obj
  51. }
  52.  
  53.