Package ptolemy.media.javasound
Interface LiveSoundListener
-
public interface LiveSoundListenerThis 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$
- Author:
- Brian K. Vogel
- See Also:
LiveSoundEvent,LiveSound- Pt.AcceptedRating:
- Red
- Pt.ProposedRating:
- Red (vogel)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidliveSoundChanged(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.
-
-