001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.projection;
003
004/**
005 * Interface for listeners to get notified when the (global) projection changes.
006 */
007@FunctionalInterface
008public interface ProjectionChangeListener {
009    void projectionChanged(Projection oldValue, Projection newValue);
010}