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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)phaseslcld.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)phaseslcld.tcl    1.3   12 Feb 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 PhaseSLCLDbObj : {PhaseSystemLinkList CListObj} {
  17.     method destructor
  18.     constructor
  19. }
  20.  
  21. method PhaseSLCLDbObj::destructor {this} {
  22.     # Start destructor user section
  23.     # End destructor user section
  24.     $this CListObj::destructor
  25. }
  26.  
  27. constructor PhaseSLCLDbObj {class this name} {
  28.     set this [PhaseSystemLinkList::constructor $class $this $name]
  29.     set this [CListObj::constructor $class $this $name]
  30.     return $this
  31. }
  32.  
  33. selfPromoter PhaseSystemLinkList {this} {
  34.     PhaseSLCLDbObj promote $this
  35. }
  36.  
  37. proc PhaseSLCLDbObj::associations {} {
  38.     return [CListObj::associations]
  39. }
  40.  
  41. proc PhaseSLCLDbObj::childTypes {assoc} {
  42.     return [CListObj::childTypes $assoc]
  43. }
  44.  
  45. proc PhaseSLCLDbObj::controlledLists {} {
  46.     return [CListObj::controlledLists]
  47. }
  48.  
  49. proc PhaseSLCLDbObj::infoProperties {} {
  50.     return [CListObj::infoProperties]
  51. }
  52.  
  53. # Do not delete this line -- regeneration end marker
  54.  
  55.