Package org.eclipse.php.internal.core.tar

Examples of org.eclipse.php.internal.core.tar.TarOutputStream


      // i do not know why
      os = new CBZip2OutputStreamForPhar(os);
    } else if (PharConstants.GZ_COMPRESSED == pharPackage.getCompressType()) {
      os = new GZIPOutputStream(os);
    }
    outputStream = new TarOutputStream(os);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.tar.TarOutputStream

Copyright © 2018 www.massapicom. 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.