| java.applet.AudioClip
AudioClip | public interface AudioClip (Code) | | The AudioClip interface is a simple abstraction for
playing a sound clip. Multiple AudioClip items can be
playing at the same time, and the resulting sound is mixed
together to produce a composite.
author: Arthur van Hoff version: 1.25, 05/05/07 since: JDK1.0 |
Method Summary | |
void | loop() Starts playing this audio clip in a loop. | void | play() Starts playing this audio clip. | void | stop() Stops playing this audio clip. |
loop | void loop()(Code) | | Starts playing this audio clip in a loop.
|
play | void play()(Code) | | Starts playing this audio clip. Each time this method is called,
the clip is restarted from the beginning.
|
stop | void stop()(Code) | | Stops playing this audio clip.
|
|
|