Class FileEditorInput
- All Implemented Interfaces:
- IAdaptable,- IEditorInput,- IFileEditorInput,- IPathEditorInput,- IPersistable,- IPersistableElement,- IStorageEditorInput,- IURIEditorInput
- Direct Known Subclasses:
- FileInPlaceEditorInput
This class may be instantiated; it is not intended to be subclassed.
- Restriction:
- This class is not intended to be subclassed by clients.
- 
Constructor SummaryConstructorsConstructorDescriptionFileEditorInput(IFile file) Creates an editor input based of the given file resource.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanbooleanexists()Returns whether the editor input exists.<T> TgetAdapter(Class<T> adapterType) Returns an object which is an instance of the given class associated with this object.Returns the id of the element factory which should be used to re-create this object.getFile()Returns the file resource underlying this editor input.Returns the image descriptor for this input.getName()Returns the name of this editor input for display purposes.getPath()Returns the local file system path of the file underlying this editor input.Returns an object that can be used to save the state of this editor input.Returns the underlying IStorage object.Returns the tool tip text for this editor input.getURI()Returns theURIof the file underlying this editor input.inthashCode()static booleanisLocalFile(IFile file) Return whether or not file is local.voidSaves the state of the object in the given memento.toString()
- 
Constructor Details- 
FileEditorInputCreates an editor input based of the given file resource.- Parameters:
- file- the file resource
 
 
- 
- 
Method Details- 
isLocalFileReturn whether or not file is local. OnlyIFiles with a local value should callIPathEditorInput.getPath()- Parameters:
- file- the file to check; not- null
- Returns:
- boolean trueif the file has a local implementation.
- Since:
- 3.4
 
- 
hashCodepublic int hashCode()
- 
equals
- 
existspublic boolean exists()Description copied from interface:IEditorInputReturns whether the editor input exists.This method is primarily used to determine if an editor input should appear in the "File Most Recently Used" menu. An editor input will appear in the list until the return value of existsbecomesfalseor it drops off the bottom of the list.- Specified by:
- existsin interface- IEditorInput
- Returns:
- trueif the editor input exists;- falseotherwise
 
- 
getFactoryIdDescription copied from interface:IPersistableElementReturns the id of the element factory which should be used to re-create this object.Factory ids are declared in extensions to the standard extension point "org.eclipse.ui.elementFactories".- Specified by:
- getFactoryIdin interface- IPersistableElement
- Returns:
- the element factory id
- See Also:
 
- 
getFileDescription copied from interface:IFileEditorInputReturns the file resource underlying this editor input.The IFilereturned can be a handle to a resource that does not exist in the workspace. As such, an editor should provide appropriate feedback to the user instead of simply failing during input validation. For example, a text editor could open in read-only mode with a message in the text area to inform the user that the file does not exist.- Specified by:
- getFilein interface- IFileEditorInput
- Returns:
- the underlying file
 
- 
getImageDescriptorDescription copied from interface:IEditorInputReturns the image descriptor for this input.Note: although a null return value has never been permitted from this method, there are many known buggy implementations that return null. Clients that need the image for an editor are advised to use IWorkbenchPart.getImage() instead of IEditorInput.getImageDescriptor(), or to recover from a null return value in a manner that records the ID of the problematic editor input. Implementors that have been returning null from this method should pick some other default return value (such as ImageDescriptor.getMissingImageDescriptor()). - Specified by:
- getImageDescriptorin interface- IEditorInput
- Returns:
- the image descriptor for this input; may be nullif there is no image.
 
- 
getNameDescription copied from interface:IEditorInputReturns the name of this editor input for display purposes.For instance, when the input is from a file, the return value would ordinarily be just the file name. - Specified by:
- getNamein interface- IEditorInput
- Returns:
- the name string; never null;
 
- 
getPersistableDescription copied from interface:IEditorInputReturns an object that can be used to save the state of this editor input.- Specified by:
- getPersistablein interface- IEditorInput
- Returns:
- the persistable element, or nullif this editor input cannot be persisted
 
- 
getStorageDescription copied from interface:IStorageEditorInputReturns the underlying IStorage object.- Specified by:
- getStoragein interface- IStorageEditorInput
- Returns:
- an IStorage object.
 
- 
getToolTipTextDescription copied from interface:IEditorInputReturns the tool tip text for this editor input. This text is used to differentiate between two input with the same name. For instance, MyClass.java in folder X and MyClass.java in folder Y. The format of the text varies between input types.- Specified by:
- getToolTipTextin interface- IEditorInput
- Returns:
- the tool tip text; never null.
 
- 
saveStateDescription copied from interface:IPersistableSaves the state of the object in the given memento.- Specified by:
- saveStatein interface- IPersistable
- Parameters:
- memento- the storage area for object's state
 
- 
getURIDescription copied from interface:IURIEditorInputReturns theURIof the file underlying this editor input.- Specified by:
- getURIin interface- IURIEditorInput
- Returns:
- URI
 
- 
getPathDescription copied from interface:IPathEditorInputReturns the local file system path of the file underlying this editor input.- Specified by:
- getPathin interface- IPathEditorInput
- Returns:
- a local file system path
 
- 
toString
- 
getAdapterDescription copied from class:PlatformObjectReturns an object which is an instance of the given class associated with this object. Returnsnullif no such object can be found.This implementation of the method declared by IAdaptablepasses the request along to the platform's adapter manager; roughlyPlatform.getAdapterManager().getAdapter(this, adapter). Subclasses may override this method (however, if they do so, they should invoke the method on their superclass to ensure that the Platform's adapter manager is consulted).- Specified by:
- getAdapterin interface- IAdaptable
- Overrides:
- getAdapterin class- PlatformObject
- Type Parameters:
- T- the class type
- Parameters:
- adapterType- the class to adapt to
- Returns:
- the adapted object or null
- See Also:
 
 
-