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

Last change on this file since 8041 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

  • Property svn:eol-style set to native
File size: 445 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 mv The object that can translate GeoPoints to screen coordinates.
14 */
15 void paint(Graphics2D g, MapView mv, Bounds bbox);
16
17}
Note: See TracBrowser for help on using the repository browser.