Examples of ZStreamFactory


Examples of org.apache.ant.compress.util.ZStreamFactory

*/
public final class ZResource extends CommonsCompressCompressorResource {
    private static final String NAME = "Z";

    public ZResource() {
        super(NAME, new ZStreamFactory());
    }
View Full Code Here

Examples of org.apache.ant.compress.util.ZStreamFactory

    public ZResource() {
        super(NAME, new ZStreamFactory());
    }

    public ZResource(ResourceCollection other) {
        super(NAME, new ZStreamFactory(), other);
    }
View Full Code Here

Examples of org.apache.ant.compress.util.ZStreamFactory

* @since Apache Compress Antlib 1.4
*/
public final class UnZ extends UnpackBase {

    public UnZ() {
        super(".Z", new ZStreamFactory());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.