home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / syscldbobj.tcl < prev    next >
Text File  |  1996-06-12  |  1KB  |  55 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)syscldbobj.tcl    /main/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)syscldbobj.tcl    /main/3   12 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "clistobj.tcl"
  15.  
  16. Class SysCLDbObj : {CListObj SystemList} {
  17.     method destructor
  18.     constructor
  19. }
  20.  
  21. method SysCLDbObj::destructor {this} {
  22.     # Start destructor user section
  23.     # End destructor user section
  24.     $this CListObj::destructor
  25. }
  26.  
  27. constructor SysCLDbObj {class this name} {
  28.     set this [SystemList::constructor $class $this $name]
  29.     set this [CListObj::constructor $class $this $name]
  30.     return $this
  31. }
  32.  
  33. selfPromoter SystemList {this} {
  34.     SysCLDbObj promote $this
  35. }
  36.  
  37. proc SysCLDbObj::associations {} {
  38.     return [CListObj::associations]
  39. }
  40.  
  41. proc SysCLDbObj::childTypes {assoc} {
  42.     return [CListObj::childTypes $assoc]
  43. }
  44.  
  45. proc SysCLDbObj::controlledLists {} {
  46.     return [CListObj::controlledLists]
  47. }
  48.  
  49. proc SysCLDbObj::infoProperties {} {
  50.     return [CListObj::infoProperties]
  51. }
  52.  
  53. # Do not delete this line -- regeneration end marker
  54.  
  55.