Class MultiEditorInput
- All Implemented Interfaces:
- IAdaptable,- IEditorInput
AbstractMultiEditor.
 This class is intended to be instantiated by clients but is not intended to
 be subclassed.- Restriction:
- This class is not intended to be subclassed by clients.
- 
Constructor SummaryConstructorsConstructorDescriptionMultiEditorInput(String[] editorIDs, IEditorInput[] innerEditors) Constructs a new MultiEditorInput.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanbooleanexists()Returns whether the editor input exists.<T> TgetAdapter(Class<T> adapter) Returns an object which is an instance of the given class associated with this object.String[]Retunrs an array with the id of all inner editors.Returns the image descriptor for this input.getInput()Returns an array with the input of all inner editors.getName()Returns the name of this editor input for display purposes.Returns an object that can be used to save the state of this editor input.Returns the tool tip text for this editor input.inthashCode()
- 
Constructor Details- 
MultiEditorInputConstructs a new MultiEditorInput.
 
- 
- 
Method Details- 
getInputReturns an array with the input of all inner editors.
- 
getEditorsRetunrs an array with the id of all inner editors.
- 
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
 
- 
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
 
- 
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.
 
- 
getAdapterDescription copied from interface:IAdaptableReturns an object which is an instance of the given class associated with this object. Returnsnullif no such object can be found.Clients may implement this method but should generally call Adapters.adapt(Object, Class, boolean)rather than invoking it directly.- Specified by:
- getAdapterin interface- IAdaptable
- Type Parameters:
- T- the class type
- Parameters:
- adapter- the adapter class to look up
- Returns:
- a object of the given class, or nullif this object does not have an adapter for the given class
 
- 
equals
- 
hashCodepublic int hashCode()
 
-