Uses of Interface
se.entitymanager.logic.EntityInterface

Packages that use EntityInterface
se.entitymanager   
se.entitymanager.logic   
se.entitymanager.logic.file   
se.entitymanager.presentation   
se.entitymanager.presentation.swing   
 

Uses of EntityInterface in se.entitymanager
 

Methods in se.entitymanager with parameters of type EntityInterface
 Icon GnomeSwingFileIconFactory.createIcon(EntityInterface entity)
           
 

Uses of EntityInterface in se.entitymanager.logic
 

Fields in se.entitymanager.logic declared as EntityInterface
private  EntityInterface EntityRenameFailedException.entity
          The entity whose renaming failed.
private  EntityInterface EntityPasteFailedException.entity
          The entity whose cutting or copying failed.
private  EntityInterface EntityDeletionFailedException.entity
          The entity whose deletion failed.
private  EntityInterface EntityCopyCutFailedException.entity
          The entity whose cutting or copying failed.
 

Methods in se.entitymanager.logic that return EntityInterface
 EntityInterface LogicFacade.getClipboardEntity()
          Returns entity to be pasted.
 EntityInterface EntityRenameFailedException.getEntity()
          Returns the entity whose renaming failed.
 EntityInterface EntityPasteFailedException.getEntity()
          Returns the entity whose cutting or copying failed.
 EntityInterface EntityDeletionFailedException.getEntity()
          Returns the entity whose deletion failed.
 EntityInterface EntityCopyCutFailedException.getEntity()
          Returns the entity whose cutting or copying failed.
 EntityInterface LogicFacade.getRootEntity()
          Returns root entity.
 

Methods in se.entitymanager.logic with parameters of type EntityInterface
 void LogicFacade.copy(EntityInterface entity)
          Copies an entity.
 void LogicFacade.delete(EntityInterface entity)
          Deletes an entity.
 java.util.Collection LogicFacade.getAllChildren(EntityInterface entity)
          Returns sub-entities of folderish entity.
 java.lang.String LogicFacade.getEntityLastModified(EntityInterface entity)
          Returns date of last modification of entity.
 java.lang.String LogicFacade.getEntityName(EntityInterface entity)
          Returns name of entity.
 java.lang.String LogicFacade.getEntitySize(EntityInterface entity)
          Returns size of entity.
 boolean LogicFacade.isEntityReadable(EntityInterface entity)
          Returns if file is readable.
 boolean LogicFacade.isEntityWriteable(EntityInterface entity)
          Returns if file is writable.
 boolean LogicFacade.isFolderish(EntityInterface entity)
          Returns whether entity is folderish.
 void LogicFacade.paste(EntityInterface destinationEntity)
          Pastes to an entity.
 void LogicFacade.rename(EntityInterface entity, java.lang.String newName)
          Renames an entity.
 

Constructors in se.entitymanager.logic with parameters of type EntityInterface
EntityChangedEvent(EntityInterface entity)
          Constructs an event that indicates change of an entity.
EntityCopyCutFailedException(EntityInterface entity, java.lang.String reason)
          Constructs an exception to indicate , that cutting or copying of an entity failed.
EntityDeletionFailedException(EntityInterface entity, java.lang.String reason)
          Constructs an exception to indicate , that deletion of an entity failed.
EntityPasteFailedException(EntityInterface entity, java.lang.String reason)
          Constructs an exception to indicate , that cutting or copying of an entity failed.
EntityRenameFailedException(EntityInterface entity, java.lang.String reason)
          Constructs an exception to indicate , that renaming of an entity failed.
 

Uses of EntityInterface in se.entitymanager.logic.file
 

Classes in se.entitymanager.logic.file that implement EntityInterface
 class AbstractFile
          An entity that represents an file of the file system.
 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 EntityInterface
private  EntityInterface FileLogicFacade.clipboardEntity
          The entity of the file to be copied or cutted (to the clipboard).
 

Methods in se.entitymanager.logic.file that return EntityInterface
 EntityInterface FileLogicFacade.getClipboardEntity()
           
 EntityInterface FileLogicFacade.getRootEntity()
           
 

Methods in se.entitymanager.logic.file with parameters of type EntityInterface
 void FileLogicFacade.copy(EntityInterface entity)
           
 void FileLogicFacade.delete(EntityInterface entity)
           
 java.util.Collection FileLogicFacade.getAllChildren(EntityInterface entity)
           
 java.lang.String FileLogicFacade.getEntityLastModified(EntityInterface entity)
           
 java.lang.String FileLogicFacade.getEntityName(EntityInterface entity)
           
 java.lang.String FileLogicFacade.getEntitySize(EntityInterface entity)
           
 boolean FileLogicFacade.isEntityReadable(EntityInterface entity)
           
 boolean FileLogicFacade.isEntityWriteable(EntityInterface entity)
           
 boolean FileLogicFacade.isFolderish(EntityInterface entity)
           
private  void FileLogicFacade.notifyChangedEntity(EntityInterface entity)
          Notifies all listeners for changed entities about a changed entity.
 void FileLogicFacade.paste(EntityInterface destinationEntity)
           
 void FileLogicFacade.rename(EntityInterface entity, java.lang.String newName)
           
 

Uses of EntityInterface in se.entitymanager.presentation
 

Methods in se.entitymanager.presentation with parameters of type EntityInterface
 Icon IconFactoryInterface.createIcon(EntityInterface entity)
          Creates an icon for the given entity.
 

Uses of EntityInterface in se.entitymanager.presentation.swing
 

Fields in se.entitymanager.presentation.swing declared as EntityInterface
private  EntityInterface SwingToolBar.entity
          The entity to be edited.
private  EntityInterface SwingPopupMenu.entity
          The entity to be edited.
private  EntityInterface SwingMenuBar.entity
          The entity to be edited.
private  EntityInterface EntityTreeCellEditor.entity
          The entity whose name is edited.
private  EntityInterface EntityDetailPanel.entity
          The entity to display the name of.
 

Methods in se.entitymanager.presentation.swing that return EntityInterface
 EntityInterface EntityTreeNode.getEntity()
          Returns the entity the node is displaying
 

Methods in se.entitymanager.presentation.swing with parameters of type EntityInterface
 EntityTreeNode EntityTree.addNode(EntityInterface child)
          Add child to the currently selected node.
 EntityTreeNode EntityTree.addNode(EntityTreeNode parent, EntityInterface child, boolean shouldBeVisible)
           
 

Constructors in se.entitymanager.presentation.swing with parameters of type EntityInterface
EntityTreeNode(SwingPresentationFacade presentationFacade, EntityInterface entity)
          Constructs a tree node for entity for a presentationFacade.