All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fartherp.framework.compress.tar.TAR Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.compress.tar;

import com.github.fartherp.framework.compress.CommonCompress;

/**
 * Created by IntelliJ IDEA.
 * Author: CK
 * Date: 2015/4/15
 */
public class TAR extends CommonCompress {
    public TAR() {
        setType(TAR);
        setSuffix(SUFFIX_TAR);
        commonCompress = new TarCompress(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy