ZipArchive.st
branchjv
changeset 3786 1a036255aa50
parent 3728 168b90fafaa6
parent 3780 c652fe7d55bc
child 3810 798577d7eed0
equal deleted inserted replaced
3778:e45a8bf6639d 3786:1a036255aa50
  5161 ! !
  5161 ! !
  5162 
  5162 
  5163 !ZipArchive::ZipWriteStream methodsFor:'queries'!
  5163 !ZipArchive::ZipWriteStream methodsFor:'queries'!
  5164 
  5164 
  5165 isReadable
  5165 isReadable
  5166     "return true, if reading is supported by the recevier.
  5166     "return true, if reading is supported by the receiver.
  5167      This has to be redefined in concrete subclasses."
  5167      This has to be redefined in concrete subclasses."
  5168 
  5168 
  5169     ^ false
  5169     ^ false
  5170 !
  5170 !
  5171 
  5171 
  5172 isWritable
  5172 isWritable
  5173     "return true, if writing is supported by the recevier.
  5173     "return true, if writing is supported by the receiver.
  5174      This has to be redefined in concrete subclasses."
  5174      This has to be redefined in concrete subclasses."
  5175 
  5175 
  5176     ^ true
  5176     ^ true
  5177 ! !
  5177 ! !
  5178 
  5178