Uses of Class
se.entitymanager.logic.file.AbstractFile

Packages that use AbstractFile
se.entitymanager.logic.file   
 

Uses of AbstractFile in se.entitymanager.logic.file
 

Subclasses of AbstractFile in se.entitymanager.logic.file
 class DirectoryFile
          An entity that represents a directory of the file system.
 class FileSystemsRootFile
          An AbstractFile that represents the root of all file systems.
 class RegularFile
          A AbstractFile that represents a regular file of the file system.
 class ZipFile
          An AbstractFile that represents a zip file.
 class ZippedDirectoryFile
          An AbstractFile that represents a zipped directory within a ZipFile.
 class ZippedFile
          An AbstractFile that represents a zipped file within a ZipFile.
 

Fields in se.entitymanager.logic.file declared as AbstractFile
protected  AbstractFile AbstractFile.parent
          Parent file of this entity.
 

Methods in se.entitymanager.logic.file that return AbstractFile
 AbstractFile FileFactory.createFile(java.lang.String name, AbstractFile parent)
          Factory method for files.
protected  AbstractFile FileSystemsRootFile.getParent()
           
protected  AbstractFile AbstractFile.getParent()
          Returns the parent file.
 

Methods in se.entitymanager.logic.file with parameters of type AbstractFile
 AbstractFile FileFactory.createFile(java.lang.String name, AbstractFile parent)
          Factory method for files.
 

Constructors in se.entitymanager.logic.file with parameters of type AbstractFile
AbstractFile(java.lang.String name, AbstractFile parent)
          Constructs a file entity with name and parent.
DirectoryFile(java.io.File file, AbstractFile parent)
          Constructs an directory entity with name and parent.
RegularFile(java.io.File file, AbstractFile parent)
          Constructs a regular file with associated file and parent.
ZipFile(java.io.File file, AbstractFile parent)
          Constructs an object with associated file.
ZippedDirectoryFile(java.util.zip.ZipFile zipFile, java.util.zip.ZipEntry zipEntry, AbstractFile parent)
          Constructs a zipped directory that is contained in zipFile, with zipEntry and parent.
ZippedFile(java.util.zip.ZipEntry zipEntry, AbstractFile parent)
          Constructs a zipped directory that is described by zipEntry and has parent.