Package org.eclipse.ui.texteditor
Class ImageUtilities
- java.lang.Object
-
- org.eclipse.ui.texteditor.ImageUtilities
-
@Deprecated public class ImageUtilities extends Object
Deprecated.As of 3.0, replaced byImageUtilities
- Since:
- 3.0
- Restriction:
- This class is not intended to be subclassed by clients.
- Restriction:
- This class is not intended to be instantiated by clients.
-
-
Constructor Summary
Constructors Constructor Description ImageUtilities()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int align)
Deprecated.As of 3.0, replaced byImageUtilities.drawImage(Image, GC, Canvas, Rectangle, int)
static void
drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int halign, int valign)
Deprecated.As of 3.0, replaced byImageUtilities.drawImage(Image, GC, Canvas, Rectangle, int, int)
-
-
-
Method Detail
-
drawImage
@Deprecated public static void drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int halign, int valign)
Deprecated.As of 3.0, replaced byImageUtilities.drawImage(Image, GC, Canvas, Rectangle, int, int)
Draws an image aligned inside the given rectangle on the given canvas.- Parameters:
image
- the image to be drawngc
- the drawing GCcanvas
- the canvas on which to drawr
- the clipping rectanglehalign
- the horizontal alignment of the image to be drawnvalign
- the vertical alignment of the image to be drawn
-
drawImage
@Deprecated public static void drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int align)
Deprecated.As of 3.0, replaced byImageUtilities.drawImage(Image, GC, Canvas, Rectangle, int)
Draws an image aligned inside the given rectangle on the given canvas.- Parameters:
image
- the image to be drawngc
- the drawing GCcanvas
- the canvas on which to drawr
- the clipping rectanglealign
- the alignment of the image to be drawn
-
-