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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)csprocessn.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)csprocessn.tcl    /main/titanic/3   28 May 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "csnode.tcl"
  15.  
  16. Class CSProcessNode : {CSNode} {
  17.     constructor
  18.     method destructor
  19.     method doUpdate
  20.     attribute process
  21. }
  22.  
  23. constructor CSProcessNode {class this name} {
  24.     set this [CSNode::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CSProcessNode::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this CSNode::destructor
  34. }
  35.  
  36. method CSProcessNode::doUpdate {this {rebuild 1}} {
  37.     $this CSNode::doUpdate $rebuild
  38.  
  39.     set info [$this info]
  40.     set process [$this process]
  41.  
  42.     $info addHeader "Process"
  43.     $info addItem "On host" [$process host]
  44.     $info addItem "Process id" [$process pid]
  45.     $info addItem "Started by" [$process owner]
  46. }
  47.  
  48. # Do not delete this line -- regeneration end marker
  49.  
  50.