java.awt
Class ColorPaintContext
java.lang.Object
|
+--java.awt.ColorPaintContext
- All Implemented Interfaces:
- PaintContext
- class ColorPaintContext
- extends Object
- implements PaintContext
|
Field Summary |
(package private) int |
color
|
(package private) java.awt.image.WritableRaster |
savedTile
|
|
Constructor Summary |
protected |
ColorPaintContext(int color,
java.awt.image.ColorModel cm)
|
|
Method Summary |
void |
dispose()
Enabled: Releases the resources allocated for the operation. |
java.awt.image.ColorModel |
getColorModel()
Enabled: Returns the ColorModel of the output. |
java.awt.image.Raster |
getRaster(int x,
int y,
int w,
int h)
Enabled: Returns a Raster containing the colors generated for
the graphics operation. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
color
int color
savedTile
java.awt.image.WritableRaster savedTile
ColorPaintContext
protected ColorPaintContext(int color,
java.awt.image.ColorModel cm)
dispose
public void dispose()
- Description copied from interface:
PaintContext
- Enabled: Releases the resources allocated for the operation.
- Specified by:
dispose in interface PaintContext
getColorModel
public java.awt.image.ColorModel getColorModel()
- Description copied from interface:
PaintContext
- Enabled: Returns the
ColorModel of the output. Note that
this ColorModel might be different from the hint
specified in the
createContext method of
Paint. Not all PaintContext objects are
capable of generating color patterns in an arbitrary
ColorModel.
- Specified by:
getColorModel in interface PaintContext
- Returns:
- the
ColorModel of the output.
getRaster
public java.awt.image.Raster getRaster(int x,
int y,
int w,
int h)
- Description copied from interface:
PaintContext
- Enabled: Returns a
Raster containing the colors generated for
the graphics operation.
- Specified by:
getRaster in interface PaintContext
- Parameters:
w - the width of the area in device spaceh - the height of the area in device space
- Returns:
- a
Raster representing the specified
rectangular area and containing the colors generated for
the graphics operation.
comments?