// License: GPL. Copyright 2007 by Immanuel Scholz and others
package org.openstreetmap.josm.gui.layer;
import java.awt.Graphics2D;
import org.openstreetmap.josm.data.Bounds;
import org.openstreetmap.josm.gui.MapView;
/**
* GWT ok
*/
public interface MapViewPaintable {
/**
* Paint the dataset using the engine set.
* @param mv The object that can translate GeoPoints to screen coordinates.
*/
void paint(Graphics2D g, MapView mv, Bounds bbox);
}