public interface Painter
| Modifier and Type | Method and Description | 
|---|---|
void | 
paint(java.awt.Graphics g,
     int x,
     int y,
     int w,
     int h)
Paint. 
 | 
void paint(java.awt.Graphics g,
           int x,
           int y,
           int w,
           int h)
g - the graphics context in which to paint.x - the x-coordinate within the graphics context at which to paint.y - the y-coordinate within the graphics context at which to paint.w - the width of the area to paint.h - the height of the area to paint.