Message.st
changeset 362 4131e87e79ec
parent 159 514c749165c3
child 379 5b5a130ccd09
equal deleted inserted replaced
361:627302423205 362:4131e87e79ec
     1 "
     1 "
     2  COPYRIGHT (c) 1988 by Claus Gittinger
     2  COPYRIGHT (c) 1988 by Claus Gittinger
     3               All Rights Reserved
     3 	      All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     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
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
    17        category:'Kernel-Methods'
    17        category:'Kernel-Methods'
    18 !
    18 !
    19 
    19 
    20 Message comment:'
    20 Message comment:'
    21 COPYRIGHT (c) 1988 by Claus Gittinger
    21 COPYRIGHT (c) 1988 by Claus Gittinger
    22               All Rights Reserved
    22 	      All Rights Reserved
    23 
    23 
    24 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.11 1994-10-10 00:26:37 claus Exp $
    24 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.12 1995-07-22 19:23:01 claus Exp $
    25 '!
    25 '!
    26 
    26 
    27 !Message class methodsFor:'documentation'!
    27 !Message class methodsFor:'documentation'!
    28 
    28 
    29 copyright
    29 copyright
    30 "
    30 "
    31  COPYRIGHT (c) 1988 by Claus Gittinger
    31  COPYRIGHT (c) 1988 by Claus Gittinger
    32               All Rights Reserved
    32 	      All Rights Reserved
    33 
    33 
    34  This software is furnished under a license and may be used
    34  This software is furnished under a license and may be used
    35  only in accordance with the terms of that license and with the
    35  only in accordance with the terms of that license and with the
    36  inclusion of the above copyright notice.   This software may not
    36  inclusion of the above copyright notice.   This software may not
    37  be provided or otherwise made available to, or used by, any
    37  be provided or otherwise made available to, or used by, any
    40 "
    40 "
    41 !
    41 !
    42 
    42 
    43 version
    43 version
    44 "
    44 "
    45 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.11 1994-10-10 00:26:37 claus Exp $
    45 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.12 1995-07-22 19:23:01 claus Exp $
    46 "
    46 "
    47 !
    47 !
    48 
    48 
    49 documentation
    49 documentation
    50 "
    50 "
   130     "send the selector with argument to some receiver"
   130     "send the selector with argument to some receiver"
   131 
   131 
   132     ^ aReceiver perform:selector withArguments:args
   132     ^ aReceiver perform:selector withArguments:args
   133 !
   133 !
   134 
   134 
   135 reinvokeFor: aReceiver
   135 reinvokeFor:aReceiver
   136     "send the selector with argument to a receiver.
   136     "send the selector with argument to a receiver.
   137      Same as sendTo: - for GNU-ST compatibility."
   137      Same as sendTo: - for GNU-ST compatibility."
   138 
   138 
   139     ^ self sendTo:aReceiver
   139     ^ self sendTo:aReceiver
   140 ! !
   140 ! !