source: josm/trunk/src/org/openstreetmap/josm/gui/layer/MapViewPaintable.java@ 9230

Last change on this file since 9230 was 9230, checked in by Don-vip, 8 years ago

fix javadoc errors/warnings

  • Property svn:eol-style set to native
File size: 501 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.layer;
3
4import java.awt.Graphics2D;
5
6import org.openstreetmap.josm.data.Bounds;
7import org.openstreetmap.josm.gui.MapView;
8
9public interface MapViewPaintable {
10
11 /**
12 * Paint the dataset using the engine set.
13 * @param g Graphics
14 * @param mv The object that can translate GeoPoints to screen coordinates.
15 * @param bbox Bounding box
16 */
17 void paint(Graphics2D g, MapView mv, Bounds bbox);
18}
Note: See TracBrowser for help on using the repository browser.