All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.audio.NullAudioFileFormat Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.audio;

import javax.sound.sampled.AudioFileFormat;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;

public class NullAudioFileFormat extends AudioFileFormat {

	public NullAudioFileFormat() {
		super(null, new AudioFormat(AudioSystem.NOT_SPECIFIED, AudioSystem.NOT_SPECIFIED, AudioSystem.NOT_SPECIFIED, false, false), AudioSystem.NOT_SPECIFIED);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy