001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.tagging.presets; 003 004/** 005 * Notification of tagging presets events. 006 * @see TaggingPresets#addListener(TaggingPresetListener) 007 * @since 7100 008 */ 009@FunctionalInterface 010public interface TaggingPresetListener { 011 012 /** 013 * Called after list of tagging presets has been modified. 014 */ 015 void taggingPresetsModified(); 016}