home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / mtproprepo.tcl < prev    next >
Text File  |  1997-08-27  |  2KB  |  62 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtproprepo.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtproprepo.tcl    /main/titanic/3   27 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "browsdbobj.tcl"
  15.  
  16. Class MTPropRepObj : {PropertyValue BrowsDbObj} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method browserObjType
  21.     method browserType
  22.     method versionName
  23. }
  24.  
  25. constructor MTPropRepObj {class this name} {
  26.     set this [PropertyValue::constructor $class $this]
  27.     set this [BrowsDbObj::constructor $class $this $name]
  28.     # Start constructor user section
  29.     $this uiType Property
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method MTPropRepObj::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37.     $this BrowsDbObj::destructor
  38. }
  39.  
  40. method MTPropRepObj::promoter {this} {
  41.     $this BrowsDbObj::promoter
  42. }
  43.  
  44. proc MTPropRepObj::associations {} {
  45.     return {}
  46. }
  47.  
  48. method MTPropRepObj::browserObjType {this} {
  49.     return MTPropRepObj
  50. }
  51.  
  52. method MTPropRepObj::browserType {this} {
  53.     return Property
  54. }
  55.  
  56. method MTPropRepObj::versionName {this} {
  57.     return ""
  58. }
  59.  
  60. # Do not delete this line -- regeneration end marker
  61.  
  62.