home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)custdefsob.tcl 1.2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)custdefsob.tcl 1.2 04 Jan 1996 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
- require "custbrowso.tcl"
-
- Class CustDefsObject : {BrowsObject CustBrowsObject} {
- method destructor
- constructor
- attribute id
- attribute index
- }
-
- method CustDefsObject::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this CustBrowsObject::destructor
- }
-
- constructor CustDefsObject {class this name specification} {
- set this [BrowsObject::constructor $class $this $name]
- set this [CustBrowsObject::constructor $class $this $name]
-
- $this activated {%this open}
-
- while {![lempty $specification]} {
- set key [lvarpop specification]
- $this $key [lvarpop specification]
- }
-
- return $this
- }
-
- # Do not delete this line -- regeneration end marker
-
-