SmalltalkChunkFileSourceReader.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 14:41:21 +0200
changeset 25372 389daab3ee10
parent 15420 27e52ae49b81
child 18068 3e841ddcb18a
permissions -rw-r--r--
#DOCUMENTATION by stefan class: ReadWriteStream category of: #isEmpty #isReadable

"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libbasic' }"

AbstractSourceFileReader subclass:#SmalltalkChunkFileSourceReader
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Classes-Support'
!

!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    I know how to read smalltalk chunk file format
"
! !

!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!

fileInStream: aStream
    ^ aStream fileIn

    "Modified: / 16-08-2009 / 10:00:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
!

version_SVN
    ^'$Id: SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
! !