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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)msumlsumma.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)msumlsumma.tcl    /main/titanic/2   29 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class MSUMLSummaryInformation : {OleAutoObject} {
  16.     method destructor
  17.     constructor
  18.     method promoter
  19.     attribute msObject
  20.     attribute objectType
  21. }
  22.  
  23. method MSUMLSummaryInformation::destructor {this} {
  24.     # Start destructor user section
  25.     set msObject [$this msObject]
  26.     if [llength $msObject] {
  27.         if [isCommand $msObject] {
  28.         $msObject delete
  29.         }
  30.     }
  31.     # End destructor user section
  32. }
  33.  
  34. constructor MSUMLSummaryInformation {class this typeName} {
  35.     set this [OleAutoObject::constructor $class $this ObjectTeamMsRepUml.$typeName]
  36. }
  37.  
  38. method MSUMLSummaryInformation::promoter {this} {
  39.     $this msObject [$this property msObject]
  40.     $this objectType [$this property objectType]
  41. }
  42.  
  43. # Do not delete this line -- regeneration end marker
  44.  
  45.