RestartProcessRequest.st
changeset 7588 1819a1c408f3
parent 6211 69f320c220d5
child 17711 39faaaf888b4
equal deleted inserted replaced
7587:89864caa2665 7588:1819a1c408f3
       
     1 "
       
     2  COPYRIGHT (c) 2001 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     2 
    14 
     3 ControlRequest subclass:#RestartProcessRequest
    15 ControlRequest subclass:#RestartProcessRequest
     4 	instanceVariableNames:''
    16 	instanceVariableNames:''
     5 	classVariableNames:''
    17 	classVariableNames:''
     7 	category:'Kernel-Exceptions-Control'
    19 	category:'Kernel-Exceptions-Control'
     8 !
    20 !
     9 
    21 
    10 !RestartProcessRequest class methodsFor:'documentation'!
    22 !RestartProcessRequest class methodsFor:'documentation'!
    11 
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2001 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
       
    37 
    12 documentation
    38 documentation
    13 "
    39 "
    14     Request to restart a process.
    40     Request to restart a process.
    15     (raised when #restart is sent to a process)
    41     (raised when #restart is sent to a process)
    16 "
    42 "
    17 ! !
    43 ! !
    18 
    44 
    19 !RestartProcessRequest class methodsFor:'documentation'!
    45 !RestartProcessRequest class methodsFor:'documentation'!
    20 
    46 
    21 version
    47 version
    22     ^ '$Header: /cvs/stx/stx/libbasic/RestartProcessRequest.st,v 1.1 2001-11-17 10:10:08 cg Exp $'
    48     ^ '$Header: /cvs/stx/stx/libbasic/RestartProcessRequest.st,v 1.2 2003-08-29 19:18:11 cg Exp $'
    23 ! !
    49 ! !