Uses of Interface
org.eclipse.core.resources.IFileState

Packages that use IFileState
org.eclipse.core.internal.localstore   
org.eclipse.core.internal.resources   
org.eclipse.core.resources Provides basic support for managing a workspace and its resources. 
org.eclipse.core.tests.internal.localstore   
 

Uses of IFileState in org.eclipse.core.internal.localstore
 

Methods in org.eclipse.core.internal.localstore that return IFileState
 IFileState IHistoryStore.addState(org.eclipse.core.runtime.IPath key, org.eclipse.core.filesystem.IFileStore localFile, org.eclipse.core.filesystem.IFileInfo fileInfo, boolean moveContents)
          Add an entry to the history store, represented by the given key.
 IFileState HistoryStore2.addState(org.eclipse.core.runtime.IPath key, org.eclipse.core.filesystem.IFileStore localFile, org.eclipse.core.filesystem.IFileInfo info, boolean moveContents)
           
 IFileState[] IHistoryStore.getStates(org.eclipse.core.runtime.IPath path, org.eclipse.core.runtime.IProgressMonitor monitor)
          Returns an array of all states available for the specified resource path or an empty array if none.
 IFileState[] HistoryStore2.getStates(org.eclipse.core.runtime.IPath filePath, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 

Methods in org.eclipse.core.internal.localstore with parameters of type IFileState
 boolean IHistoryStore.exists(IFileState target)
          Verifies existence of specified resource in the history store.
 boolean HistoryStore2.exists(IFileState target)
           
 java.io.InputStream IHistoryStore.getContents(IFileState target)
          Returns an input stream containing the file contents of the specified state.
 java.io.InputStream HistoryStore2.getContents(IFileState target)
           
 

Uses of IFileState in org.eclipse.core.internal.resources
 

Classes in org.eclipse.core.internal.resources that implement IFileState
 class FileState
           
 

Fields in org.eclipse.core.internal.resources declared as IFileState
static IFileState[] ICoreConstants.EMPTY_FILE_STATES
           
 

Methods in org.eclipse.core.internal.resources that return IFileState
 IFileState[] File.getHistory(org.eclipse.core.runtime.IProgressMonitor monitor)
           
 

Methods in org.eclipse.core.internal.resources with parameters of type IFileState
 void File.setContents(IFileState source, boolean force, boolean keepHistory, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 void File.setContents(IFileState content, int updateFlags, org.eclipse.core.runtime.IProgressMonitor monitor)
           
 

Uses of IFileState in org.eclipse.core.resources
 

Methods in org.eclipse.core.resources that return IFileState
 IFileState[] IFile.getHistory(org.eclipse.core.runtime.IProgressMonitor monitor)
          Returns a list of past states of this file known to this workspace.
 

Methods in org.eclipse.core.resources with parameters of type IFileState
 void IFile.setContents(IFileState source, boolean force, boolean keepHistory, org.eclipse.core.runtime.IProgressMonitor monitor)
          Sets the contents of this file to the bytes in the given file state.
 void IFile.setContents(IFileState source, int updateFlags, org.eclipse.core.runtime.IProgressMonitor monitor)
          Sets the contents of this file to the bytes in the given file state.
 

Uses of IFileState in org.eclipse.core.tests.internal.localstore
 

Methods in org.eclipse.core.tests.internal.localstore with parameters of type IFileState
static void HistoryStoreTest.assertEquals(java.lang.String tag, IFileState expected, IFileState actual)