001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.projection;
003
004public interface ProjectionChangeListener {
005    void projectionChanged(Projection oldValue, Projection newValue);
006}