Eclipse Platform
2.1

Uses of Class
org.eclipse.jface.resource.ImageDescriptor

Packages that use ImageDescriptor
org.eclipse.compare Provides support for performing structural and textual compare operations on arbitrary data and displaying the results. 
org.eclipse.debug.ui Provides a generic debugger user interface that clients may customize via standard workbench extension points. 
org.eclipse.jface.action Provides support for shared UI resources such as menus, tool bars, and status lines. 
org.eclipse.jface.dialogs Provides support for dialogs. 
org.eclipse.jface.preference Provides a framework for preferences. 
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images. 
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
org.eclipse.jface.wizard Provides a framework for wizards. 
org.eclipse.search.ui Provides classes and interfaces for search pages. 
org.eclipse.team.ui Application programming interface for associating a repository provider with a project. 
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.eclipse.ui.actions Classes for actions and operations used in a workbench window, page, or part in the Eclipse Platform User Interface. 
org.eclipse.ui.model Provides a workbench adapter for displaying workbench elements in the UI without having to know the concrete type of the element. 
org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface. 
org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules. 
org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. 
 

Uses of ImageDescriptor in org.eclipse.compare
 

Fields in org.eclipse.compare declared as ImageDescriptor
static ImageDescriptor CompareUI.DESC_DTOOL_NEXT
          Image descriptor for the disabled icon of the 'Next' tool bar button.
static ImageDescriptor CompareUI.DESC_CTOOL_NEXT
          Image descriptor for the normal icon of the 'Next' tool bar button.
static ImageDescriptor CompareUI.DESC_ETOOL_NEXT
          Image descriptor for the roll-over icon of the 'Next' tool bar button.
static ImageDescriptor CompareUI.DESC_DTOOL_PREV
          Image descriptor for the disabled icon of the 'Previous' tool bar button.
static ImageDescriptor CompareUI.DESC_CTOOL_PREV
          Image descriptor for the normal icon of the 'Previous' tool bar button.
static ImageDescriptor CompareUI.DESC_ETOOL_PREV
          Image descriptor for the roll-over icon of the 'Previous' tool bar button.
 

Methods in org.eclipse.compare that return ImageDescriptor
 ImageDescriptor CompareEditorInput.getImageDescriptor()
           
 

Methods in org.eclipse.compare with parameters of type ImageDescriptor
static void CompareUI.registerImageDescriptor(String type, ImageDescriptor descriptor)
          Registers an image descriptor for the given type.
 

Uses of ImageDescriptor in org.eclipse.debug.ui
 

Methods in org.eclipse.debug.ui that return ImageDescriptor
static ImageDescriptor DebugUITools.getImageDescriptor(String key)
          Returns the shared image descriptor managed under the given key, or null if none.
static ImageDescriptor DebugUITools.getDefaultImageDescriptor(Object element)
          Returns the default image descriptor for the given element or null if none is defined.
 

Uses of ImageDescriptor in org.eclipse.jface.action
 

Methods in org.eclipse.jface.action that return ImageDescriptor
 ImageDescriptor Action.getDisabledImageDescriptor()
           
 ImageDescriptor Action.getHoverImageDescriptor()
           
 ImageDescriptor Action.getImageDescriptor()
           
 ImageDescriptor IAction.getDisabledImageDescriptor()
          Returns the disabled image for this action as an image descriptor.
 ImageDescriptor IAction.getHoverImageDescriptor()
          Returns the hover image for this action as an image descriptor.
 ImageDescriptor IAction.getImageDescriptor()
          Returns the image for this action as an image descriptor.
 

Methods in org.eclipse.jface.action with parameters of type ImageDescriptor
 void Action.setDisabledImageDescriptor(ImageDescriptor newImage)
           
 void Action.setHoverImageDescriptor(ImageDescriptor newImage)
           
 void Action.setImageDescriptor(ImageDescriptor newImage)
           
 void IAction.setDisabledImageDescriptor(ImageDescriptor newImage)
          Sets the disabled image for this action, as an image descriptor.
 void IAction.setHoverImageDescriptor(ImageDescriptor newImage)
          Sets the hover image for this action, as an image descriptor.
 void IAction.setImageDescriptor(ImageDescriptor newImage)
          Sets the image for this action, as an image descriptor.
 

Constructors in org.eclipse.jface.action with parameters of type ImageDescriptor
Action(String text, ImageDescriptor image)
          Creates a new action with the given text and image.
 

Uses of ImageDescriptor in org.eclipse.jface.dialogs
 

Methods in org.eclipse.jface.dialogs with parameters of type ImageDescriptor
 void DialogPage.setImageDescriptor(ImageDescriptor desc)
           
 void IDialogPage.setImageDescriptor(ImageDescriptor image)
          Sets this dialog page's image.
 

Constructors in org.eclipse.jface.dialogs with parameters of type ImageDescriptor
DialogPage(String title, ImageDescriptor image)
          Creates a new dialog page with the given title and image.
 

Uses of ImageDescriptor in org.eclipse.jface.preference
 

Methods in org.eclipse.jface.preference that return ImageDescriptor
protected  ImageDescriptor PreferenceNode.getImageDescriptor()
          Returns the image descriptor for this node.
 

Constructors in org.eclipse.jface.preference with parameters of type ImageDescriptor
PreferencePage(String title, ImageDescriptor image)
          Creates a new abstract preference page with the given title and image.
FieldEditorPreferencePage(String title, ImageDescriptor image, int style)
          Creates a new field editor preference page with the given title, image, and style.
PreferenceNode(String id, String label, ImageDescriptor image, String className)
          Creates a preference node with the given id, label, and image, and lazily-loaded preference page.
 

Uses of ImageDescriptor in org.eclipse.jface.resource
 

Subclasses of ImageDescriptor in org.eclipse.jface.resource
 class CompositeImageDescriptor
          Abstract base class for image descriptors that synthesize an image from other images in order to simulate the effect of custom drawing.
 

Methods in org.eclipse.jface.resource that return ImageDescriptor
static ImageDescriptor ImageDescriptor.createFromFile(Class location, String filename)
          Creates and returns a new image descriptor from a file.
static ImageDescriptor ImageDescriptor.createFromURL(URL url)
          Creates and returns a new image descriptor from a URL.
static ImageDescriptor ImageDescriptor.getMissingImageDescriptor()
          Returns the shared image descriptor for a missing image.
 ImageDescriptor ImageRegistry.getDescriptor(String key)
          Returns the descriptor associated with the given key in this registry, or null if none.
 

Methods in org.eclipse.jface.resource with parameters of type ImageDescriptor
 void ImageRegistry.put(String key, ImageDescriptor descriptor)
          Adds (or replaces) an image descriptor to this registry.
 

Uses of ImageDescriptor in org.eclipse.jface.viewers
 

Methods in org.eclipse.jface.viewers with parameters of type ImageDescriptor
 void IDecoration.addOverlay(ImageDescriptor overlay)
          Adds an overlay to the element's image.
 

Uses of ImageDescriptor in org.eclipse.jface.wizard
 

Methods in org.eclipse.jface.wizard with parameters of type ImageDescriptor
 void Wizard.setDefaultPageImageDescriptor(ImageDescriptor imageDescriptor)
          Sets the default page image descriptor for this wizard.
 void WizardPage.setImageDescriptor(ImageDescriptor image)
          The WizardPage implementation of this method declared on DialogPage updates the container if this page is the current page.
 

Constructors in org.eclipse.jface.wizard with parameters of type ImageDescriptor
WizardPage(String pageName, String title, ImageDescriptor titleImage)
          Creates a new wizard page with the given name, title, and image.
 

Uses of ImageDescriptor in org.eclipse.search.ui
 

Methods in org.eclipse.search.ui with parameters of type ImageDescriptor
 void ISearchResultView.searchStarted(IActionGroupFactory groupFactory, String singularLabel, String pluralLabelPattern, ImageDescriptor imageDescriptor, String pageId, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
          Informs the view that a search has started.
 void ISearchResultView.searchStarted(String pageId, String label, ImageDescriptor imageDescriptor, IContextMenuContributor contributor, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
          Deprecated. As of build > 20011107, replaced by the new version with additonal parameter
 void ISearchResultView.searchStarted(String pageId, String singularLabel, String pluralLabelPattern, ImageDescriptor imageDescriptor, IContextMenuContributor contributor, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
          Deprecated. As of build > 20020514, replaced by the new version which provides an action group factory
 

Uses of ImageDescriptor in org.eclipse.team.ui
 

Methods in org.eclipse.team.ui that return ImageDescriptor
static ImageDescriptor TeamImages.getImageDescriptor(String id)
          Returns the image descriptor for the given image ID.
static ImageDescriptor TeamImages.getImageDescriptorFromExtension(IExtension extension, String subdirectoryAndFilename)
          Convenience method to get an image descriptor for an extension
 

Uses of ImageDescriptor in org.eclipse.ui
 

Methods in org.eclipse.ui that return ImageDescriptor
 ImageDescriptor IEditorInput.getImageDescriptor()
          Returns the image descriptor for this input.
 ImageDescriptor ISharedImages.getImageDescriptor(String symbolicName)
          Retrieves the image descriptor for specified image from the workbench's image registry.
 ImageDescriptor IEditorDescriptor.getImageDescriptor()
          Returns the descriptor of the image for this editor.
 ImageDescriptor IWorkingSet.getImage()
          Returns the working set icon.
 ImageDescriptor IPerspectiveDescriptor.getImageDescriptor()
          Returns the descriptor of the image for this perspective.
 ImageDescriptor IFileEditorMapping.getImageDescriptor()
          Returns the descriptor of the image to use for a file of this type.
 ImageDescriptor IWorkbenchPartDescriptor.getImageDescriptor()
          Returns the descriptor of the image for this part.
 ImageDescriptor IEditorRegistry.getImageDescriptor(String filename)
          Returns the image descriptor associated with a given file.
 ImageDescriptor IEditorRegistry.getImageDescriptor(IFile file)
          Returns the image descriptor associated with a given file.
 

Uses of ImageDescriptor in org.eclipse.ui.actions
 

Methods in org.eclipse.ui.actions with parameters of type ImageDescriptor
 void LabelRetargetAction.setDisabledImageDescriptor(ImageDescriptor image)
           
 void LabelRetargetAction.setHoverImageDescriptor(ImageDescriptor image)
           
 void LabelRetargetAction.setImageDescriptor(ImageDescriptor image)
           
 

Uses of ImageDescriptor in org.eclipse.ui.model
 

Methods in org.eclipse.ui.model that return ImageDescriptor
 ImageDescriptor IWorkbenchAdapter.getImageDescriptor(Object object)
          Returns an image descriptor to be used for displaying an object in the workbench.
protected  ImageDescriptor WorkbenchLabelProvider.decorateImage(ImageDescriptor input, Object element)
          Returns an image descriptor that is based on the given descriptor, but decorated with additional information relating to the state of the provided object.
 

Methods in org.eclipse.ui.model with parameters of type ImageDescriptor
protected  ImageDescriptor WorkbenchLabelProvider.decorateImage(ImageDescriptor input, Object element)
          Returns an image descriptor that is based on the given descriptor, but decorated with additional information relating to the state of the provided object.
 

Uses of ImageDescriptor in org.eclipse.ui.part
 

Methods in org.eclipse.ui.part that return ImageDescriptor
 ImageDescriptor MultiEditorInput.getImageDescriptor()
           
 ImageDescriptor FileEditorInput.getImageDescriptor()
           
 

Uses of ImageDescriptor in org.eclipse.ui.texteditor
 

Methods in org.eclipse.ui.texteditor that return ImageDescriptor
 ImageDescriptor TextNavigationAction.getDisabledImageDescriptor()
           
 ImageDescriptor TextNavigationAction.getHoverImageDescriptor()
           
 ImageDescriptor TextNavigationAction.getImageDescriptor()
           
 

Methods in org.eclipse.ui.texteditor with parameters of type ImageDescriptor
protected static Image MarkerAnnotation.getImage(Display display, ImageDescriptor descriptor)
          Returns an image for the given display as specified by the given image descriptor.
 void TextNavigationAction.setDisabledImageDescriptor(ImageDescriptor newImage)
           
 void TextNavigationAction.setHoverImageDescriptor(ImageDescriptor newImage)
           
 void TextNavigationAction.setImageDescriptor(ImageDescriptor newImage)
           
 

Uses of ImageDescriptor in org.eclipse.ui.views.navigator
 

Methods in org.eclipse.ui.views.navigator that return ImageDescriptor
protected  ImageDescriptor ResourceNavigatorActionGroup.getImageDescriptor(String relativePath)
          Returns the image descriptor with the given relative path.
 


Eclipse Platform
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.