/** * XZ data compression support. * *
* This aims to be a complete implementation of XZ data compression * in pure Java. Features: *
* Threading is planned but it is unknown when it will be implemented. *
* For the latest source code, see the * home page of XZ for Java. * *
* Start by reading the documentation of {@link org.tukaani.xz.XZOutputStream} * and {@link org.tukaani.xz.XZInputStream}. * If you use XZ inside another file format or protocol, * see also {@link org.tukaani.xz.SingleXZInputStream}. * *
* XZ for Java has been put into the public domain, thus you can do * whatever you want with it. All the files in the package have been * written by Lasse Collin and/or Igor Pavlov. *
* This software is provided "as is", without any warranty. */ package org.tukaani.xz;