Package org.eclipse.jdt.ui.dialogs
Interface ITypeInfoImageProvider
-
public interface ITypeInfoImageProvider
A special image descriptor provider forITypeInfoRequestor
.The interface should be implemented by clients wishing to provide special images inside the type selection dialog.
- Since:
- 3.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageDescriptor
getImageDescriptor(ITypeInfoRequestor typeInfoRequestor)
Returns the image descriptor for the type represented by the givenITypeInfoRequestor
.
-
-
-
Method Detail
-
getImageDescriptor
ImageDescriptor getImageDescriptor(ITypeInfoRequestor typeInfoRequestor)
Returns the image descriptor for the type represented by the givenITypeInfoRequestor
.Note, that this method may be called from non UI threads.
- Parameters:
typeInfoRequestor
- theITypeInfoRequestor
to access information for the type under inspection- Returns:
- the image descriptor or
null
to use the default image
-
-