home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)propcontai.tcl 1.4
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)propcontai.tcl 1.4 01 Feb 1996 Copyright 1996 Cadre Technologies Inc.
-
- # Start user added include file section
- # End user added include file section
-
-
- Class PropContainer : {GCObject} {
- constructor
- method destructor
- method addPropDefinition
- method removePropDefinition
- attribute editable
- attribute propertyKey
- attribute propertyPresentation
- attribute propDefinitionSet
- attribute propInterface
- }
-
- constructor PropContainer {class this} {
- set this [GCObject::constructor $class $this]
- $this propDefinitionSet [List new]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method PropContainer::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
- # Do not delete this line -- regeneration end marker
-
- method PropContainer::addPropDefinition {this newPropDefinition} {
- [$this propDefinitionSet] append $newPropDefinition
-
- }
-
- method PropContainer::removePropDefinition {this oldPropDefinition} {
- [$this propDefinitionSet] removeValue $oldPropDefinition
- }
-
-