home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cbcadmodel.tcl < prev    next >
Text File  |  1997-11-26  |  1KB  |  46 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cbcadmodel.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbcadmodel.tcl    /main/titanic/1   26 Nov 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require "cbclass.tcl"
  13. require "cbbinaryas.tcl"
  14. require "cbnaryasso.tcl"
  15. # End user added include file section
  16.  
  17.  
  18. Class CBCADModel : {Object} {
  19.     method destructor
  20.     constructor
  21. }
  22.  
  23. method CBCADModel::destructor {this} {
  24.     # Start destructor user section
  25.     # End destructor user section
  26. }
  27.  
  28. constructor CBCADModel {class this} {
  29.     set this [Object::constructor $class $this $this]
  30.  
  31.     # Add creator scripts to the ObjectFactory
  32.     set objFac [$this getObjectFactory]
  33.     $objFac addCreatorScript $OMT_CAD_NaryAssocConn \
  34.         "return \[CBNaryAssoc new $this]"
  35.     # Combined types
  36.     $objFac addCreatorScript $OMT_CAD_CB_Class \
  37.         "return \[CBClass new $this]"
  38.     $objFac addCreatorScript $OMT_CAD_CB_Association \
  39.         "return \[CBBinaryAssoc new $this]"
  40.  
  41.     return $this
  42. }
  43.  
  44. # Do not delete this line -- regeneration end marker
  45.  
  46.