source: josm/trunk/src/org/openstreetmap/josm/io/audio/AudioListener.java@ 14628

Last change on this file since 14628 was 13819, checked in by Don-vip, 6 years ago

see #2089, see #16047 - move JavaFX classes to their own package in order to exclude them automatically when JavaFX is not on the classpath (needed for Java 11+ now that FX is gone)

File size: 375 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io.audio;
3
4import java.net.URL;
5
6/**
7 * Listener receiving audio playing events.
8 * @since 12328
9 */
10public interface AudioListener {
11
12 /**
13 * Called when a new URL is being played.
14 * @param playingURL new URL being played
15 */
16 void playing(URL playingURL);
17}
Note: See TracBrowser for help on using the repository browser.