266267268269270271272273274275
public void draw(Graphics2D graphics){ AffineTransform at = graphics.getTransform(); ShapePainter.paint(this, graphics); PictureData data = getPictureData(); if(data != null) data.draw(graphics, this); graphics.setTransform(at); } }
265266267268269270271272273274
263264265266267268269270271272
261262263264265266267268269270
public void draw(Graphics2D graphics){ AffineTransform at = graphics.getTransform(); ShapePainter.paint(this, graphics); PictureData data = getPictureData(); data.draw(graphics, this); graphics.setTransform(at); } }