/** Overrides <code>Graphics.copyArea</code>. */
 public void copyArea(int x, int y, int width, int height, int destX, int destY) {
   if (debugLog()) {
     info()
         .log(
             toShortString()
                 + " Copying area from: "
                 + new Rectangle(x, y, width, height)
                 + " to: "
                 + new Point(destX, destY));
   }
   graphics.copyArea(x, y, width, height, destX, destY);
 }