void | clearRect(int x, int y, int width, int height) - The rest of the methods here are just pass-throughs to g.
|
void | clipRect(int x, int y, int width, int height)
|
void | copyArea(int x, int y, int width, int height, int dx, int dy)
|
Graphics | create()
|
void | dispose()
|
void | drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
|
boolean | drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
|
boolean | drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
|
boolean | drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
|
boolean | drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
|
boolean | drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
|
boolean | drawImage(Image img, int x, int y, ImageObserver observer)
|
void | drawLine(int x1, int y1, int x2, int y2)
|
void | drawOval(int x, int y, int width, int height)
|
void | drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
|
void | drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
|
void | drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
|
void | drawString(String str, int x, int y)
|
void | drawString(AttributedCharacterIterator iterator, int x, int y)
|
void | fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
|
void | fillOval(int x, int y, int width, int height)
|
void | fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
|
void | fillRect(int x, int y, int width, int height)
|
void | fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
|
Shape | getClip()
|
Rectangle | getClipBounds()
|
Color | getColor()
|
Font | getFont()
|
FontMetrics | getFontMetrics(Font f)
|
PrinterJob | getPrinterJob() - PrinterGraphics method - Returns the printer job associated with this object.
|
void | setClip(int x, int y, int width, int height)
|
void | setClip(Shape clip)
|
void | setColor(Color c)
|
void | setFont(Font font)
|
void | setPaintMode()
|
void | setXORMode(Color c1)
|
int | spoolPage(PrintWriter out, Printable printable, PageFormat pageFormat, int index) - Spools a single page, returns NO_SUCH_PAGE unsuccessful,
PAGE_EXISTS if it was.
|
SpooledDocument | spoolPostScript(Printable printable, PageFormat pageFormat, Pageable pageable) - Spool a document to PostScript.
|
void | translate(int x, int y)
|