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
RevLine 
[6380]1// License: GPL. For details, see LICENSE file.
[608]2package org.openstreetmap.josm.gui.layer;
3
[2450]4import java.awt.Graphics2D;
[608]5
[2450]6import org.openstreetmap.josm.data.Bounds;
[608]7import org.openstreetmap.josm.gui.MapView;
8
9public interface MapViewPaintable {
10
[1169]11 /**
12 * Paint the dataset using the engine set.
[9230]13 * @param g Graphics
[1169]14 * @param mv The object that can translate GeoPoints to screen coordinates.
[9230]15 * @param bbox Bounding box
[1169]16 */
[2450]17 void paint(Graphics2D g, MapView mv, Bounds bbox);
[2512]18}
Note: See TracBrowser for help on using the repository browser.