Creates a buffered image for the treemap. @param map image to draw the map on @param rects rectangles to be drawn
(final BufferedImage map, final MapRects rects)
| 432 | * @param rects rectangles to be drawn |
| 433 | */ |
| 434 | private void drawMap(final BufferedImage map, final MapRects rects) { |
| 435 | final Graphics g = map.getGraphics(); |
| 436 | BaseXLayout.antiAlias(g); |
| 437 | painter.drawRectangles(g, rects); |
| 438 | } |
| 439 | |
| 440 | @Override |
| 441 | public void mouseMoved(final MouseEvent e) { |
no test coverage detected