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

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


public class GZPharEntryBufferedOutputStream extends
    PharEntryBufferedOutputStream {

  public GZPharEntryBufferedOutputStream(OutputStream innerStream)
      throws IOException {
    super(new GZIPOutputStreamForPhar(innerStream));
  }
View Full Code Here


        currentOutputStream = fileContentStream;
      } else if (currentEntry.getMethod() == PharConstants.BZ2_COMPRESSED) {
        currentOutputStream = new CBZip2OutputStreamForPhar(
            fileContentStream);
      } else if (currentEntry.getMethod() == PharConstants.GZ_COMPRESSED) {
        currentOutputStream = new GZIPOutputStreamForPhar(
            fileContentStream);
      }
      currentOutputStream = new CRCableOutputStream(currentOutputStream);
    }
View Full Code Here

TOP

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

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.