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

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


          archive = new ZipArchiveFile(pharFile);
        } else if (PHPToolkitUtil.TAR_EXTENSTION.equals(extension)
            || PHPToolkitUtil.GZ_EXTENSTION.equals(extension)
            || PHPToolkitUtil.BZ2_EXTENSTION.equals(extension)) {

          archive = new TarArchiveFile(pharFile);
        }
      } catch (Exception e) {
        return true;
      }
    }
View Full Code Here


          archive = new ZipArchiveFile(localFile);
        } else if (TAR_EXTENSTION.equals(extension)
            || GZ_EXTENSTION.equals(extension)
            || BZ2_EXTENSTION.equals(extension)) {

          archive = new TarArchiveFile(localFile);
        }
      } catch (PharException e) {
        throw new IOException(e.getMessage());
      } catch (TarException e) {
        throw new IOException(e.getMessage());
View Full Code Here

TOP

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

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.