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

Last change on this file was 36483, checked in by stoecker, 5 months ago

set eol-style, fix checkstyle issues, add ignores

  • Property svn:eol-style set to native
File size: 575 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.