source: josm/trunk/src/org/tukaani/xz/FilterCoder.java@ 14374

Last change on this file since 14374 was 13350, checked in by stoecker, 7 years ago

see #15816 - add XZ support

File size: 303 bytes
Line 
1/*
2 * FilterCoder
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10package org.tukaani.xz;
11
12interface FilterCoder {
13 boolean changesSize();
14 boolean nonLastOK();
15 boolean lastOK();
16}
Note: See TracBrowser for help on using the repository browser.