Packages  This Package  Prev  Next  Index  

§3.4 Interface AudioClip

public  interface  java.applet.AudioClip
{
        // Methods
    public abstract void loop();	§3.4.1
    public abstract void play();	§3.4.2
    public abstract void stop();	§3.4.3
}
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.


Methods

loop

public abstract void loop()
Starts playing this audio clip in a loop.

play

public abstract void play()
Starts playing this audio clip. Each time this method is called, the clip is restarted from the beginning.

stop

public abstract void stop()
Stops playing this audio clip.


Packages  This Package  Prev  Next  Index
Java API Document (HTML generated by dkramer on April 22, 1996)
Copyright © 1996 Sun Microsystems, Inc. All rights reserved
Please send any comments or corrections to doug.kramer@sun.com