| java.lang.Object org.apache.harmony.awt.gl.TextRenderer org.apache.harmony.awt.gl.render.JavaTextRenderer
Method Summary | |
public void | drawClipGlyphVector(WritableRaster raster, Object color, GlyphVector glyphVector, int x, int y, int cMinX, int cMinY, int cMaxX, int cMaxY) Draws string on specified raster at desired position. | public void | drawClipString(WritableRaster raster, Object color, String str, FontPeerImpl font, int x, int y, int cMinX, int cMinY, int cMaxX, int cMaxY) Draws string on specified raster at desired position. | public void | drawGlyphVector(Graphics2D g, GlyphVector glyphVector, float x, float y) | public void | drawString(Graphics2D g, String str, float x, float y) |
drawClipGlyphVector | public void drawClipGlyphVector(WritableRaster raster, Object color, GlyphVector glyphVector, int x, int y, int cMinX, int cMinY, int cMaxX, int cMaxY)(Code) | | Draws string on specified raster at desired position.
Parameters: raster - specified WritableRaster to draw at Parameters: color - color of the text Parameters: glyphVector - GlyphVector object to draw Parameters: x - start X position to draw Parameters: y - start Y position to draw Parameters: cMinX - minimum x of the raster area to draw Parameters: cMinY - minimum y of the raster area to draw Parameters: cMaxX - maximum x of the raster area to draw Parameters: cMaxY - maximum y of the raster area to draw |
drawClipString | public void drawClipString(WritableRaster raster, Object color, String str, FontPeerImpl font, int x, int y, int cMinX, int cMinY, int cMaxX, int cMaxY)(Code) | | Draws string on specified raster at desired position.
Parameters: raster - specified WritableRaster to draw at Parameters: color - color of the text Parameters: str - text to draw Parameters: font - font peer to use for drawing text Parameters: x - start X position to draw Parameters: y - start Y position to draw Parameters: cMinX - minimum x of the raster area to draw Parameters: cMinY - minimum y of the raster area to draw Parameters: cMaxX - maximum x of the raster area to draw Parameters: cMaxY - maximum y of the raster area to draw |
|
|