Uses of Interface
org.apache.aries.util.filesystem.IFile

Packages that use IFile
org.apache.aries.util.filesystem   
org.apache.aries.util.filesystem.impl   
org.apache.aries.util.io   
org.apache.aries.util.manifest   
 

Uses of IFile in org.apache.aries.util.filesystem
 

Subinterfaces of IFile in org.apache.aries.util.filesystem
 interface ICloseableDirectory
          Implementation of IDirectory that is more efficient for batch operations as it does not due automatic resource management.
 interface IDirectory
          A virtual directory in a file system.
 

Methods in org.apache.aries.util.filesystem that return IFile
 IFile IDirectory.getFile(String name)
          Gets the requested file under this directory.
 

Methods in org.apache.aries.util.filesystem that return types with arguments of type IFile
 List<IFile> IDirectory.listAllFiles()
           
 List<IFile> IDirectory.listFiles()
           
 

Uses of IFile in org.apache.aries.util.filesystem.impl
 

Classes in org.apache.aries.util.filesystem.impl that implement IFile
 class CloseableDirectory
           
 class DirectoryImpl
          An IDirectory representing a java.io.File whose isDirectory method returns true.
 class FileImpl
          An implementation of IFile that represents a java.io.File.
 class InputStreamClosableDirectory
           
 class NestedCloseableDirectory
           
 class NestedZipDirectory
           
 class NestedZipFile
           
 class ZipCloseableDirectory
           
 class ZipDirectory
          A directory in the zip.
 class ZipFileImpl
          An implementation of IFile that represents a file entry in a zip.
 

Fields in org.apache.aries.util.filesystem.impl declared as IFile
protected  IFile NestedZipFile.archive
           
 

Methods in org.apache.aries.util.filesystem.impl that return IFile
 IFile ZipDirectory.getFile(String name)
           
 IFile NestedZipDirectory.getFile(String name)
           
 IFile DirectoryImpl.getFile(String name)
           
 IFile CloseableDirectory.getFile(String name)
           
 

Methods in org.apache.aries.util.filesystem.impl that return types with arguments of type IFile
 Iterator<IFile> ZipDirectory.iterator()
           
 Iterator<IFile> NestedZipDirectory.iterator()
           
 Iterator<IFile> DirectoryImpl.iterator()
           
 Iterator<IFile> CloseableDirectory.iterator()
           
 List<IFile> ZipDirectory.listAllFiles()
           
 List<IFile> NestedZipDirectory.listAllFiles()
           
 List<IFile> DirectoryImpl.listAllFiles()
           
 List<IFile> CloseableDirectory.listAllFiles()
           
 List<IFile> ZipDirectory.listFiles()
           
 List<IFile> NestedZipDirectory.listFiles()
           
 List<IFile> DirectoryImpl.listFiles()
           
 List<IFile> CloseableDirectory.listFiles()
           
 

Methods in org.apache.aries.util.filesystem.impl with parameters of type IFile
static boolean FileSystemImpl.isValidZip(IFile zip)
          Check whether a file is actually a valid zip
 

Constructors in org.apache.aries.util.filesystem.impl with parameters of type IFile
NestedCloseableDirectory(IFile archive, NestedZipDirectory delegate)
           
NestedZipDirectory(IFile archive)
           
NestedZipDirectory(IFile archive, String pathInZip, NestedZipDirectory parent, NestedCloseableDirectory cache)
           
NestedZipDirectory(IFile archive, ZipEntry entry, NestedZipDirectory parent, NestedCloseableDirectory cache)
           
NestedZipFile(IFile archive)
           
NestedZipFile(IFile archive, String pathInZip, NestedZipDirectory parent, NestedCloseableDirectory cache)
           
NestedZipFile(IFile archive, ZipEntry entry, NestedZipDirectory parent, NestedCloseableDirectory cache)
          Construct a nested zip file
 

Uses of IFile in org.apache.aries.util.io
 

Methods in org.apache.aries.util.io with parameters of type IFile
static boolean IOUtils.unpackZip(IFile zip, File outputDir)
          Unpack the zip file into the outputDir
 

Uses of IFile in org.apache.aries.util.manifest
 

Methods in org.apache.aries.util.manifest with parameters of type IFile
static BundleManifest BundleManifest.fromBundle(IFile f)
          Retrieve a BundleManifest from the given jar file
 



Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.