Class OscilloscopeDispatcher.PlayClip
- java.lang.Object
-
- org.eclipse.nebula.widgets.oscilloscope.OscilloscopeDispatcher.PlayClip
-
- Enclosing class:
- OscilloscopeDispatcher
public class OscilloscopeDispatcher.PlayClip extends java.lang.Object
Plays a sound clip.
-
-
Constructor Summary
Constructors Constructor Description PlayClip()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.sound.sampled.Clip
getClip()
Returns the clip so you can control it.void
playClip(java.io.File file, int loopCount)
Creates a clip from the passed sound file and plays it.
-
-
-
Method Detail
-
getClip
public javax.sound.sampled.Clip getClip()
Returns the clip so you can control it.- Returns:
- the Clip
-
playClip
public void playClip(java.io.File file, int loopCount)
Creates a clip from the passed sound file and plays it. If the clip is currently playing then the method returns, get the clip withgetClip()
to control it.- Parameters:
file
-loopCount
-
-
-