Class AppletAudioClip

java.lang.Object
net.sourceforge.jnlp.runtime.AppletAudioClip
All Implemented Interfaces:
AudioClip

public class AppletAudioClip extends Object implements AudioClip
An applet audio clip using the javax.sound API.
  • Constructor Details

    • AppletAudioClip

      public AppletAudioClip(URL location)
      Creates new AudioClip. If the clip cannot be opened no exception is thrown, instead the methods of the AudioClip return without performing any operations.
      Parameters:
      location - the clip location
  • Method Details

    • loop

      public void loop()
      Plays the clip in a continuous loop until the stop method is called.
      Specified by:
      loop in interface AudioClip
    • play

      public void play()
      Plays the clip from the beginning.
      Specified by:
      play in interface AudioClip
    • stop

      public void stop()
      Stops playing the clip.
      Specified by:
      stop in interface AudioClip