1 package sound.player;
2
3 /**
4 * Created by IntelliJ IDEA.
5 * User: Douglas Lyon
6 * Date: Dec 13, 2004
7 * Time: 8:55:19 PM
8 * Copyright DocJava, Inc.
9 */
10 public interface LiveSoundListener {
11
12
13 /**
14 * Notify that the an audio parameter of LiveSound has
15 * changed.
16 *
17 * @param event The live sound change event.
18 */
19 public void liveSoundChanged(LiveSoundEvent event);
20 }
21