source: osm/applications/editors/josm/plugins/opendata/includes/org/j7zip/SevenZip/ICompressCoder2.java

Last change on this file was 29679, checked in by donvip, 12 years ago

[josm_opendata] Add .7z archive read support

File size: 591 bytes
Line 
1package org.j7zip.SevenZip;
2
3import org.j7zip.Common.RecordVector;
4
5public interface ICompressCoder2 {
6 public int Code(
7 RecordVector<java.io.InputStream> inStreams,
8 Object useless1, // const UInt64 ** /* inSizes */,
9 int numInStreams,
10 RecordVector<java.io.OutputStream> outStreams,
11 Object useless2, // const UInt64 ** /* outSizes */,
12 int numOutStreams,
13 ICompressProgressInfo progress) throws java.io.IOException;
14
15 public void close() throws java.io.IOException ; // destructor
16}
Note: See TracBrowser for help on using the repository browser.