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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)propcontai.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)propcontai.tcl    1.4   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.  
  15. Class PropContainer : {GCObject} {
  16.     constructor
  17.     method destructor
  18.     method addPropDefinition
  19.     method removePropDefinition
  20.     attribute editable
  21.     attribute propertyKey
  22.     attribute propertyPresentation
  23.     attribute propDefinitionSet
  24.     attribute propInterface
  25. }
  26.  
  27. constructor PropContainer {class this} {
  28.     set this [GCObject::constructor $class $this]
  29.     $this propDefinitionSet [List new]
  30.     # Start constructor user section
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method PropContainer::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38. }
  39.  
  40. # Do not delete this line -- regeneration end marker
  41.  
  42. method PropContainer::addPropDefinition {this newPropDefinition} {
  43.     [$this propDefinitionSet] append $newPropDefinition
  44.  
  45. }
  46.  
  47. method PropContainer::removePropDefinition {this oldPropDefinition} {
  48.     [$this propDefinitionSet] removeValue $oldPropDefinition
  49. }
  50.  
  51.