Home | History | Annotate | Download | only in xz
      1 /*
      2  * DeltaCoder
      3  *
      4  * Author: Lasse Collin <lasse.collin (at) 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 abstract class DeltaCoder implements FilterCoder {
     13     public static final long FILTER_ID = 0x03;
     14 
     15     public boolean changesSize() {
     16         return false;
     17     }
     18 
     19     public boolean nonLastOK() {
     20         return true;
     21     }
     22 
     23     public boolean lastOK() {
     24         return false;
     25     }
     26 }
     27