*/
void paintBackground(Graphics g) {
if (getStyle().getBorder() != null) {
Border b = getBorder();
if (b != null && b.isBackgroundPainter()) {
b.paintBorderBackground(g, this);
return;
}
}
if (getStyle().getBgPainter() != null) {
getStyle().getBgPainter().paint(g, new Rectangle(getX(), getY(), getWidth(), getHeight()));