Package org.eclipse.ui
Interface IStorageEditorInput
-
- All Superinterfaces:
IAdaptable,IEditorInput
- All Known Subinterfaces:
IFileEditorInput
- All Known Implementing Classes:
FileEditorInput,FileInPlaceEditorInput
public interface IStorageEditorInput extends IEditorInput
Interface for aIStorageinput to an editor.Clients implementing this editor input interface should override
Object.equals(Object)to answer true for two inputs that are the same. TheIWorkbenchPage.openEditorAPIs are dependent on this to find an editor with the same input.Clients should implement this interface to declare new types of
IStorageeditor inputs.File-oriented editors should support this as a valid input type, and display its content for viewing (but not allow modification). Within the editor, the "save" and "save as" operations should create a new file resource within the workspace.
All editor inputs must implement the
IAdaptableinterface; extensions are managed by the platform's adapter manager.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IStoragegetStorage()Returns the underlying IStorage object.-
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
-
Methods inherited from interface org.eclipse.ui.IEditorInput
exists, getImageDescriptor, getName, getPersistable, getToolTipText
-
-
-
-
Method Detail
-
getStorage
IStorage getStorage() throws CoreException
Returns the underlying IStorage object.- Returns:
- an IStorage object.
- Throws:
CoreException- if this method fails
-
-