Uses of Class
org.eclipse.swt.graphics.Image

Packages that use Image
org.eclipse.ercp.swt.mobile This package contains classes which are suitable for mobile devices. 
org.eclipse.swt.graphics SWT graphics classes. 
org.eclipse.swt.widgets Optional Expanded eSWT Widgets 
 

Uses of Image in org.eclipse.ercp.swt.mobile
 

Methods in org.eclipse.ercp.swt.mobile that return Image
 Image TimedMessageBox.getImage()
          Returns the icon object.
 Image ListView.getIcon(int index)
          Returns the item icon at the given, zero-relative index in the receiver.
 Image[] ListBoxItem.getDetailIcons()
          Gets the detail icons of the item.
 Image[] ListBoxItem.getHeadingIcons()
          Gets the heading icons for this item.
 Image CaptionedControl.getImage()
          Returns the CaptionedControl's icon image, or null if it has never been set.
 

Methods in org.eclipse.ercp.swt.mobile with parameters of type Image
 void TimedMessageBox.setImage(Image image)
          Sets the receiver's icon to the argument.
 Composite MultiPageDialog.createPage(java.lang.String title, Image icon)
          Creates a new page with the specified title string and icon.
 void MultiPageDialog.setImage(int index, Image icon)
          Sets the icon image of the page at the given zero-relative index.
 void ListView.add(java.lang.String item, Image icon)
          Adds the string item and an optional icon to the end of the receiver's list.
 void ListView.add(java.lang.String string, Image icon, int index)
          Adds the string item and an optional icon to the receiver's list at the given zero-relative index.
 void ListView.setItem(int index, java.lang.String string, Image icon)
          Sets the text and icon of the item in the receiver's list at the given zero-relative index to the string argument.
 void ListView.setItems(java.lang.String[] items, Image[] icons)
          Sets the receiver's items to be the given array of items and icons.
 void ListBoxItem.setDetailIcons(Image[] icons)
          Sets the detail icons of the item.
 void ListBoxItem.setHeadingIcons(Image[] icons)
          Sets the heading icons for this item.
 void CaptionedControl.setImage(Image image)
          Sets the image as an icon to the CaptionedControl.
 

Constructors in org.eclipse.ercp.swt.mobile with parameters of type Image
ListBoxItem(java.lang.String detailText, Image detailIcon, java.lang.String headingText, Image headingIcon)
          Constructs a new instance of this class and initializes it using provided data.
 

Uses of Image in org.eclipse.swt.graphics
 

Methods in org.eclipse.swt.graphics with parameters of type Image
 void GC.copyArea(Image image, int x, int y)
          Copies a rectangular area of the receiver at the specified position into the image, which must be of type SWT.BITMAP.
 void GC.drawImage(Image image, int x, int y)
          Draws the given image in the receiver at the specified coordinates.
 void GC.drawImage(Image image, int srcX, int srcY, int srcWidth, int srcHeight, int destX, int destY, int destWidth, int destHeight)
          Copies a rectangular area from the source image into a (potentially different sized) rectangular area in the receiver.
 

Uses of Image in org.eclipse.swt.widgets
 

Methods in org.eclipse.swt.widgets that return Image
 Image TableItem.getImage(int index)
          Returns the image stored at the given column index in the receiver, or null if the image has not been set or if the column does not exist.
 Image Label.getImage()
          Returns the receiver's image if it has one, or null if it does not.
 Image Decorations.getImage()
          Returns the receiver's image if it had previously been set using setImage().
 Image Button.getImage()
          Returns the receiver's image if it has one, or null if it does not.
 Image Item.getImage()
          Returns the receiver's image if it has one, or null if it does not.
 

Methods in org.eclipse.swt.widgets with parameters of type Image
 void TreeItem.setImage(Image image)
           
 void TableItem.setImage(Image[] images)
          Sets the image for multiple columns in the Table.
 void TableItem.setImage(int index, Image image)
          Sets the receiver's image at a column.
 void TableItem.setImage(Image image)
           
 void TableColumn.setImage(Image image)
           
 void MenuItem.setImage(Image image)
          Sets the image the receiver will display to the argument.
 void Label.setImage(Image image)
          Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
 void Decorations.setImage(Image image)
          Sets the receiver's image to the argument, which may be null.
 void Button.setImage(Image image)
          Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
 void Item.setImage(Image image)
          Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.