Uses of Class
org.apache.commons.vfs.provider.tar.TarEntry

Packages that use TarEntry
org.apache.commons.vfs.provider.tar The Tar File Provider. 
 

Uses of TarEntry in org.apache.commons.vfs.provider.tar
 

Fields in org.apache.commons.vfs.provider.tar declared as TarEntry
protected  TarEntry TarFileObject.entry
           
private  TarEntry TarInputStream.m_currEntry
           
 

Methods in org.apache.commons.vfs.provider.tar that return TarEntry
 TarEntry[] TarEntry.getDirectoryEntries()
          If this entry represents a file, and the file is a directory, return an array of TarEntries for this entry's children.
 TarEntry TarInputStream.getNextEntry()
          Get the next entry in this tar archive.
 

Methods in org.apache.commons.vfs.provider.tar with parameters of type TarEntry
protected  TarFileObject TarFileSystem.createTarFileObject(FileName name, TarEntry entry)
           
 boolean TarEntry.equals(TarEntry other)
          Determine if the two entries are equal.
 java.io.InputStream TarFileSystem.getInputStream(TarEntry entry)
           
 boolean TarEntry.isDescendent(TarEntry desc)
          Determine if the given entry is a descendant of this entry.
protected  void TarFileObject.setTarEntry(TarEntry entry)
          Sets the details for this file object.
 

Constructors in org.apache.commons.vfs.provider.tar with parameters of type TarEntry
TarFileObject(FileName name, TarEntry entry, TarFileSystem fs, boolean tarExists)