source: josm/trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetListener.java@ 12042

Last change on this file since 12042 was 10590, checked in by Don-vip, 8 years ago

see #11390, fix #13191 - Documentation and migration to java 8 of preset code (patch by michael2402) - gsoc-core

  • Property svn:eol-style set to native
File size: 404 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.tagging.presets;
3
4/**
5 * Notification of tagging presets events.
6 * @since 7100
7 * @see TaggingPresets#addListener(TaggingPresetListener)
8 */
9@FunctionalInterface
10public interface TaggingPresetListener {
11
12 /**
13 * Called after list of tagging presets has been modified.
14 */
15 void taggingPresetsModified();
16}
Note: See TracBrowser for help on using the repository browser.