SmalltalkChunkFileSourceReader.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 01:30:00 +0000
branchjv
changeset 18011 deb0c3355881
parent 17976 50c2416f962a
parent 14408 c3830b8e8abe
child 18045 c0c600e0d3b3
permissions -rw-r--r--
Merged branch 'default' (CVS HEAD)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     1
"
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     3
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     4
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     5
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     6
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     9
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    10
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    11
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
3e5291372dea initial checkin
fm
parents:
diff changeset
    13
3e5291372dea initial checkin
fm
parents:
diff changeset
    14
AbstractSourceFileReader subclass:#SmalltalkChunkFileSourceReader
3e5291372dea initial checkin
fm
parents:
diff changeset
    15
	instanceVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    16
	classVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    17
	poolDictionaries:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    18
	category:'Kernel-Classes'
3e5291372dea initial checkin
fm
parents:
diff changeset
    19
!
3e5291372dea initial checkin
fm
parents:
diff changeset
    20
3e5291372dea initial checkin
fm
parents:
diff changeset
    21
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    22
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    23
copyright
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    24
"
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    25
 COPYRIGHT (c) 2009 by eXept Software AG
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    26
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    27
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    28
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    29
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    31
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    32
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    33
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    34
"
14408
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    35
!
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    36
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    37
documentation
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    38
"
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    39
    I know how to read smalltalk chunk file format
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    40
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    41
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    42
3e5291372dea initial checkin
fm
parents:
diff changeset
    43
!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    44
3e5291372dea initial checkin
fm
parents:
diff changeset
    45
fileInStream: aStream
3e5291372dea initial checkin
fm
parents:
diff changeset
    46
        "raise an error: must be redefined in concrete subclass(es)"
3e5291372dea initial checkin
fm
parents:
diff changeset
    47
3e5291372dea initial checkin
fm
parents:
diff changeset
    48
    aStream fileIn
3e5291372dea initial checkin
fm
parents:
diff changeset
    49
3e5291372dea initial checkin
fm
parents:
diff changeset
    50
    "Modified: / 16-08-2009 / 10:00:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
3e5291372dea initial checkin
fm
parents:
diff changeset
    51
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    52
3e5291372dea initial checkin
fm
parents:
diff changeset
    53
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    54
3e5291372dea initial checkin
fm
parents:
diff changeset
    55
version
14408
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    56
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.6 2012-10-20 19:23:30 cg Exp $'
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    57
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    58
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    59
version_CVS
14408
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.6 2012-10-20 19:23:30 cg Exp $'
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    61
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    62
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    63
version_SVN
12179
2ce0159b3bb4 update #version_SVN with § as keyword expansion character
fm
parents: 12054
diff changeset
    64
    ^'§Id: SmalltalkChunkFileSourceReader.st 10465 2009-08-16 17:14:23Z vranyj1 §'
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    65
! !