source: josm/trunk/src/org/tukaani/xz/LZMA2Coder.java@ 13686

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

see #15816 - add XZ support

File size: 485 bytes
Line 
1/*
2 * LZMA2Coder
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
12abstract class LZMA2Coder implements FilterCoder {
13 public static final long FILTER_ID = 0x21;
14
15 public boolean changesSize() {
16 return true;
17 }
18
19 public boolean nonLastOK() {
20 return false;
21 }
22
23 public boolean lastOK() {
24 return true;
25 }
26}
Note: See TracBrowser for help on using the repository browser.