EndOfStreamNotification.st
changeset 8989 55e8738f8b57
parent 7592 aaa6a17f80a4
child 17711 39faaaf888b4
equal deleted inserted replaced
8988:2e82cf20dbbd 8989:55e8738f8b57
    14 
    14 
    15 Notification subclass:#EndOfStreamNotification
    15 Notification subclass:#EndOfStreamNotification
    16 	instanceVariableNames:''
    16 	instanceVariableNames:''
    17 	classVariableNames:''
    17 	classVariableNames:''
    18 	poolDictionaries:''
    18 	poolDictionaries:''
    19 	category:'Streams'
    19 	category:'Kernel-Exceptions-Errors'
    20 !
    20 !
    21 
    21 
    22 !EndOfStreamNotification class methodsFor:'documentation'!
    22 !EndOfStreamNotification class methodsFor:'documentation'!
    23 
    23 
    24 copyright
    24 copyright
    31  inclusion of the above copyright notice.   This software may not
    31  inclusion of the above copyright notice.   This software may not
    32  be provided or otherwise made available to, or used by, any
    32  be provided or otherwise made available to, or used by, any
    33  other person.  No title to or ownership of the software is
    33  other person.  No title to or ownership of the software is
    34  hereby transferred.
    34  hereby transferred.
    35 "
    35 "
       
    36 !
       
    37 
       
    38 documentation
       
    39 "
       
    40     This notification is raised on attempt to read after the end of a stream
       
    41     has been reached. As a notification, it will be ignored if no handler exists.
       
    42 
       
    43     It is raised, if Stream>>signalAtEnd:nil has been set (this is the default).
       
    44 
       
    45     [author:]
       
    46         Stefan Vogel (stefan@zwerg)
       
    47 
       
    48     [instance variables:]
       
    49 
       
    50     [class variables:]
       
    51 
       
    52     [see also:]
       
    53         EndOfStreamError
       
    54 
       
    55 "
    36 ! !
    56 ! !
    37 
    57 
    38 !EndOfStreamNotification class methodsFor:'documentation'!
    58 !EndOfStreamNotification class methodsFor:'documentation'!
    39 
    59 
    40 version
    60 version
    41     ^ '$Header: /cvs/stx/stx/libbasic/EndOfStreamNotification.st,v 1.2 2003-08-29 19:32:37 cg Exp $'
    61     ^ '$Header: /cvs/stx/stx/libbasic/EndOfStreamNotification.st,v 1.3 2005-11-16 08:44:41 stefan Exp $'
    42 ! !
    62 ! !