IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
 
[Sommaire]  [Top 50]  [F.A.Q.]  [ Java SE ]  [ Java EE ]  [Javadoc standard]  [Contact]
[ 1.4.2 ]  [ 5.0 ]  [ 6.0
Rechercher   
Dans
Options   sensible à la casse
étendre la recherche aux descriptions
Préférences
fr en 
 
Moteurs de recherche
JavaTM 2 Platform Std. Ed. v1.5.0

java.applet
Interface AudioClip


public interface AudioClip

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.

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.
 

Method Detail

play

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


loop

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


stop

void stop()
Stops playing this audio clip.


Copyright 2003 Sun Microsystems, Inc. All rights reserved