Java Utililty Methods Paint Rectangle

List of utility methods to do Paint Rectangle

Description

The list of methods to do Paint Rectangle are organized into topic(s).

Method

voidpaintBackgroundRow(Graphics g, Rectangle rectangleArea)
paint Background Row
Color tmpColor = g.getColor();
g.setColor(new Color(20, 18, 20));
g.fillRect(rectangleArea.x, rectangleArea.y, rectangleArea.width, rectangleArea.height);
g.setColor(tmpColor);