public SoundExample(String wavfile, Position p) { soundFile = wavfile; postion = p; }
public void run() {
// here read sound from external file . File fileObject = new File(this.soundFile); if (!fileObject.exists()) { System.err.println("Wave file not found: " + this.soundFile); return; }