Eclipse Platform
Release 3.1

Uses of Interface
org.eclipse.core.filesystem.IFileStore

Packages that use IFileStore
org.eclipse.core.filebuffers Provides the API for accessing file buffers. 
org.eclipse.core.filesystem Provides an interface for interacting with a file system.  
org.eclipse.core.filesystem.provider Provides an API to be extended by a file system implementation.  
org.eclipse.ui.editors.text Provides a standard text editor and concrete document providers based IFileBuffer and others directly handling IFile and IStorage as editor input. 
 

Uses of IFileStore in org.eclipse.core.filebuffers
 

Methods in org.eclipse.core.filebuffers that return IFileStore
static IFileStore FileBuffers.getFileStoreAtLocation(IPath location)
          Returns the file in the local file system for the given location.
 

Uses of IFileStore in org.eclipse.core.filesystem
 

Methods in org.eclipse.core.filesystem that return IFileStore
 IFileStore IFileSystem.getStore(IPath path)
          Returns a handle to a file store in this file system.
 IFileStore IFileSystem.getStore(URI uri)
          Returns a handle to a file store in this file system.
 IFileStore[] IFileStore.childStores(int options, IProgressMonitor monitor)
          Returns an IFileStore instance for each file and directory contained within this store.
 IFileStore IFileStore.getChild(IPath path)
          Returns a child of this store as specified by the provided path.
 IFileStore IFileStore.getChild(String name)
          Returns a child store with the provided name whose parent is this store.
 IFileStore IFileStore.getParent()
          Returns the parent of this store.
 IFileStore IFileStore.mkdir(int options, IProgressMonitor monitor)
          Creates and returns a new directory.
static IFileStore EFS.getStore(URI uri)
          Returns the file store corresponding to the provided URI.
 

Methods in org.eclipse.core.filesystem with parameters of type IFileStore
 void IFileStore.copy(IFileStore destination, int options, IProgressMonitor monitor)
          Copies the file represented by this store to the provided destination store.
 boolean IFileStore.isParentOf(IFileStore other)
          Returns whether this store is a parent of the provided store.
 void IFileStore.move(IFileStore destination, int options, IProgressMonitor monitor)
          Moves the file represented by this store to the provided destination store.
 

Uses of IFileStore in org.eclipse.core.filesystem.provider
 

Classes in org.eclipse.core.filesystem.provider that implement IFileStore
 class FileStore
          The abstract superclass of all IFileStore implementations.
 

Methods in org.eclipse.core.filesystem.provider that return IFileStore
 IFileStore FileSystem.getStore(IPath path)
          This is the default implementation of IFileSystem.getStore(IPath).
abstract  IFileStore FileSystem.getStore(URI uri)
           
 IFileStore[] FileStore.childStores(int options, IProgressMonitor monitor)
          The default implementation of childStores(int, IProgressMonitor).
 IFileStore FileStore.getChild(IPath path)
          The default implementation of getChild(IPath).
abstract  IFileStore FileStore.getChild(String name)
           
abstract  IFileStore FileStore.getParent()
           
 IFileStore FileStore.mkdir(int options, IProgressMonitor monitor)
          The default implementation of mkdir(int, IProgressMonitor).
 

Methods in org.eclipse.core.filesystem.provider with parameters of type IFileStore
 void FileStore.copy(IFileStore destination, int options, IProgressMonitor monitor)
          The default implementation of copy(IFileStore, int, IProgressMonitor).
protected  void FileStore.copyDirectory(IFileInfo sourceInfo, IFileStore destination, int options, IProgressMonitor monitor)
          Recursively copies a directory as specified by copy(IFileStore, int, IProgressMonitor).
protected  void FileStore.copyFile(IFileInfo sourceInfo, IFileStore destination, int options, IProgressMonitor monitor)
          Copies a file as specified by copy(IFileStore, int, IProgressMonitor).
 boolean FileStore.isParentOf(IFileStore other)
          The default implementation of isParentOf(IFileStore).
 void FileStore.move(IFileStore destination, int options, IProgressMonitor monitor)
          The default implementation of move(IFileStore, int, IProgressMonitor).
 

Uses of IFileStore in org.eclipse.ui.editors.text
 

Methods in org.eclipse.ui.editors.text that return IFileStore
protected  IFileStore TextFileDocumentProvider.getFileStore(TextFileDocumentProvider.FileInfo info)
          Returns the file store denoted by the given info.
 


Eclipse Platform
Release 3.1

Guidelines for using Eclipse APIs.

Copyright (c) IBM Corp. and others 2000, 2005. All rights reserved.