source: josm/trunk/src/org/tukaani/xz/FilterEncoder.java@ 13472

Last change on this file since 13472 was 13350, checked in by stoecker, 6 years ago

see #15816 - add XZ support

File size: 476 bytes
Line 
1/*
2 * FilterEncoder
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 FilterEncoder extends FilterCoder {
13 long getFilterID();
14 byte[] getFilterProps();
15 boolean supportsFlushing();
16 FinishableOutputStream getOutputStream(FinishableOutputStream out,
17 ArrayCache arrayCache);
18}
Note: See TracBrowser for help on using the repository browser.