source: josm/trunk/src/org/openstreetmap/josm/data/projection/ProjectionChangeListener.java@ 13423

Last change on this file since 13423 was 12453, checked in by bastiK, 7 years ago

see #14794 - remaining javadoc for the josm/data/ packages

  • Property svn:eol-style set to native
File size: 323 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection;
3
4/**
5 * Interface for listeners to get notified when the (global) projection changes.
6 */
7@FunctionalInterface
8public interface ProjectionChangeListener {
9 void projectionChanged(Projection oldValue, Projection newValue);
10}
Note: See TracBrowser for help on using the repository browser.