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 10 package org.tukaani.xz; 11 12 interface FilterCoder { changesSize()13 boolean changesSize(); nonLastOK()14 boolean nonLastOK(); lastOK()15 boolean lastOK(); 16 } 17