PeekableStream.st
changeset 1295 83f594f05c52
parent 701 a309e3ef7faf
child 1422 9a0b792f2953
equal deleted inserted replaced
1294:e26bbb61f6b2 1295:83f594f05c52
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 Stream subclass:#PeekableStream
    13 Stream subclass:#PeekableStream
    14 	 instanceVariableNames:''
    14 	instanceVariableNames:''
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'Streams'
    17 	category:'Streams'
    18 !
    18 !
    19 
    19 
    20 !PeekableStream class methodsFor:'documentation'!
    20 !PeekableStream class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    36 documentation
    36 documentation
    37 "
    37 "
    38     abstract superclass for all Stream which support read-ahead
    38     abstract superclass for all Stream which support read-ahead
    39     (i.e. peeking) of one element.
    39     (i.e. peeking) of one element.
    40     Concrete subclasses must implement a peek method.
    40     Concrete subclasses must implement a peek method.
       
    41 
       
    42     [author:]
       
    43         Claus Gittinger
    41 "
    44 "
    42 ! !
    45 ! !
    43 
    46 
    44 !PeekableStream methodsFor:'reading'!
    47 !PeekableStream methodsFor:'reading'!
    45 
    48 
   201 ! !
   204 ! !
   202 
   205 
   203 !PeekableStream class methodsFor:'documentation'!
   206 !PeekableStream class methodsFor:'documentation'!
   204 
   207 
   205 version
   208 version
   206     ^ '$Header: /cvs/stx/stx/libbasic/PeekableStream.st,v 1.13 1995-12-07 21:37:35 cg Exp $'
   209     ^ '$Header: /cvs/stx/stx/libbasic/PeekableStream.st,v 1.14 1996-04-25 17:01:02 cg Exp $'
   207 ! !
   210 ! !