ptolemy.media.javasound
Interface LiveSoundListener


public interface LiveSoundListener

This interface is implemented by objects that are interested in being kept informed about changes in the audio parameters of LiveSound. The listeners register their interest through the addLiveSoundListener() method of LiveSound, and are informed of the changes by receiving instances of the LiveSoundEvent in the liveSoundChanged() method.

Since:
Ptolemy II 1.0
Version:
$Id: LiveSoundListener.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Brian K. Vogel
See Also:
LiveSoundEvent, LiveSound
Accepted Rating:
Red
Proposed Rating:
Red (vogel)

Method Summary
 void liveSoundChanged(LiveSoundEvent event)
          Notify that the an audio parameter of LiveSound has changed.
 

Method Detail

liveSoundChanged

void liveSoundChanged(LiveSoundEvent event)
Notify that the an audio parameter of LiveSound has changed.

Parameters:
event - The live sound change event.