(Shape s)
| 1321 | |
| 1322 | |
| 1323 | protected void fillShape(Shape s) { |
| 1324 | if (fillGradient) { |
| 1325 | g2.setPaint(fillGradientObject); |
| 1326 | g2.fill(s); |
| 1327 | } else if (fill) { |
| 1328 | g2.setColor(fillColorObject); |
| 1329 | g2.fill(s); |
| 1330 | } |
| 1331 | } |
| 1332 | |
| 1333 | |
| 1334 | protected void strokeShape(Shape s) { |