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

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


    if (pharEntry.isCompressed()) {
      int ctype = pharEntry.getCompressedType();
      if (PharConstants.BZ2_COMPRESSED == ctype) {
        is = new CBZip2InputStreamForPhar(is);
      } else if (PharConstants.GZ_COMPRESSED == ctype) {
        is = new GZIPInputStreamForPhar(is);
      }
    }
    result = new BufferedInputStream(is);
    return result;
  }
View Full Code Here

TOP

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

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.