Object.st
changeset 438 6c03b347369f
parent 421 a0807a38319d
child 443 fae13c0f1512
equal deleted inserted replaced
437:a005e97d261e 438:6c03b347369f
    28 
    28 
    29 Object comment:'
    29 Object comment:'
    30 COPYRIGHT (c) 1988 by Claus Gittinger
    30 COPYRIGHT (c) 1988 by Claus Gittinger
    31 	      All Rights Reserved
    31 	      All Rights Reserved
    32 
    32 
    33 $Header: /cvs/stx/stx/libbasic/Object.st,v 1.63 1995-09-03 15:05:41 claus Exp $
    33 $Header: /cvs/stx/stx/libbasic/Object.st,v 1.64 1995-09-17 17:57:05 claus Exp $
    34 '!
    34 '!
    35 
    35 
    36 !Object class methodsFor:'documentation'!
    36 !Object class methodsFor:'documentation'!
    37 
    37 
    38 copyright
    38 copyright
    49 "
    49 "
    50 !
    50 !
    51 
    51 
    52 version
    52 version
    53 "
    53 "
    54 $Header: /cvs/stx/stx/libbasic/Object.st,v 1.63 1995-09-03 15:05:41 claus Exp $
    54 $Header: /cvs/stx/stx/libbasic/Object.st,v 1.64 1995-09-17 17:57:05 claus Exp $
    55 "
    55 "
    56 !
    56 !
    57 
    57 
    58 documentation
    58 documentation
    59 "
    59 "
   627 isStream
   627 isStream
   628     "return true, if the receiver is some kind of stream;
   628     "return true, if the receiver is some kind of stream;
   629      false is returned here - the method is only redefined in Stream."
   629      false is returned here - the method is only redefined in Stream."
   630 
   630 
   631     ^ false
   631     ^ false
       
   632 !
       
   633 
       
   634 isExternalStream
       
   635     "return true, if the receiver is some kind of externalStream;
       
   636      false is returned here - the method is only redefined in ExternalStream."
       
   637 
       
   638     ^false
   632 !
   639 !
   633 
   640 
   634 isFileStream
   641 isFileStream
   635     "return true, if the receiver is some kind of fileStream;
   642     "return true, if the receiver is some kind of fileStream;
   636      false is returned here - the method is only redefined in FileStream."
   643      false is returned here - the method is only redefined in FileStream."