source: josm/trunk/src/org/openstreetmap/josm/gui/MapFrameListener.java@ 8644

Last change on this file since 8644 was 8512, checked in by Don-vip, 9 years ago

checkstyle: redundant modifiers

  • Property svn:eol-style set to native
File size: 556 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui;
3
4/**
5 * Listener notified of MapFrame changes.
6 * @since 5957
7 */
8public interface MapFrameListener {
9
10 /**
11 * Called after Main.mapFrame is initalized. (After the first data is loaded).
12 * You can use this callback to tweak the newFrame to your needs, as example install
13 * an alternative Painter.
14 * @param oldFrame The old MapFrame
15 * @param newFrame The new MapFrame
16 */
17 void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame);
18}
Note: See TracBrowser for help on using the repository browser.