Examples of GZipStreamFactory


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

* Expands a gzip archive.
*/
public final class GUnzip extends UnpackBase {

    public GUnzip() {
        super(".gz", new GZipStreamFactory());
    }
View Full Code Here

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

* Compresses using gzip.
*/
public final class GZip extends PackBase {

    public GZip() {
        super(new GZipStreamFactory(),
              new PackBase.ResourceWrapper() {
                public CommonsCompressCompressorResource wrap(Resource dest) {
                    return new GZipResource(dest);
                }
            });
View Full Code Here

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

*/
public final class GZipResource extends CommonsCompressCompressorResource {
    private static final String NAME = "GZip";

    public GZipResource() {
        super(NAME, new GZipStreamFactory());
    }
View Full Code Here

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

    public GZipResource() {
        super(NAME, new GZipStreamFactory());
    }

    public GZipResource(ResourceCollection other) {
        super(NAME, new GZipStreamFactory(), other);
    }
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.