| sun.porting.graphicssystem.Drawable
Drawable | public interface Drawable extends sun.awt.PhysicalDrawingSurface(Code) | | The Drawable interface specifies operations that are available
on all drawable surfaces (either a screen or an offscreen memory region).
version: 1.14, 08/19/02 |
getColorModel | java.awt.image.ColorModel getColorModel()(Code) | | Get the color model of this Drawable . May be null if the
object's color model is indeterminate.
The color model, as a java.awt.image.ColorModel object. |
getGraphics | java.awt.Graphics getGraphics(GeometryProvider provider)(Code) | | Get a Graphics object associated with this Drawable .
The Graphics object must consult the GeometryProvider
on every draw, in order to properly clip and translate.
The GeometryProvider is what allows the underlying graphics
library to properly draw into a window.
See Also: GeometryProvider |
getSize | java.awt.Dimension getSize()(Code) | | Get the size of this Drawable .
The size in pixels, as a java.awt.Dimension object. |
|
|