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