001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.plugins.streetside.history; 003 004/** 005* Interface for the listener of the {@link StreetsideRecord} class 006* 007* @author nokutu 008* @see StreetsideRecord 009*/ 010@FunctionalInterface 011public interface StreetsideRecordListener { 012 013/** 014* Fired when any command is undone or redone. 015*/ 016void recordChanged(); 017}