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

Last change on this file since 2646 was 2512, checked in by stoecker, 14 years ago

i18n updated, fixed files to reduce problems when applying patches, fix #4017

  • Property svn:eol-style set to native
File size: 459 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
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.